Skip to content

Commit

Permalink
Update python Docker tag to v3.12.7 (#349)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 2, 2024
1 parent f30f18c commit 6f93200
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.6-alpine@sha256:7130f75b1bb16c7c5d802782131b4024fe3d7a87ce7d936e8948c2d2e0180bc4 AS builder
FROM python:3.12.7-alpine@sha256:9351a79325f7f2b756caabfd58e6398864cd2793e92335db8369c568387794bd AS builder

# Prevent Python from writing out pyc files
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down Expand Up @@ -26,7 +26,7 @@ RUN python3 -m venv ${VIRTUAL_ENV} && \



FROM python:3.12.6-alpine@sha256:7130f75b1bb16c7c5d802782131b4024fe3d7a87ce7d936e8948c2d2e0180bc4
FROM python:3.12.7-alpine@sha256:9351a79325f7f2b756caabfd58e6398864cd2793e92335db8369c568387794bd

# renovate: datasource=pypi depName=pip versioning=pep440
ARG PIP_VERSION="24.2"
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.6-slim-bookworm@sha256:97d07e6202bec201aa4c3cc29a935faef57ae70fd2a20d3256099e34a6572f23 AS builder
FROM python:3.12.7-slim-bookworm@sha256:2ed43e0569677e1bde248a1efd3e95cced0ba48100e7925bb3bb328d57a053d5 AS builder

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -64,7 +64,7 @@ RUN python3 -m venv "${VIRTUAL_ENV}" && \



FROM python:3.12.6-slim-bookworm@sha256:97d07e6202bec201aa4c3cc29a935faef57ae70fd2a20d3256099e34a6572f23 AS geckodriver
FROM python:3.12.7-slim-bookworm@sha256:2ed43e0569677e1bde248a1efd3e95cced0ba48100e7925bb3bb328d57a053d5 AS geckodriver

SHELL ["/bin/bash", "-c"]

Expand All @@ -91,7 +91,7 @@ RUN set -x && \



FROM python:3.12.6-slim-bookworm@sha256:97d07e6202bec201aa4c3cc29a935faef57ae70fd2a20d3256099e34a6572f23
FROM python:3.12.7-slim-bookworm@sha256:2ed43e0569677e1bde248a1efd3e95cced0ba48100e7925bb3bb328d57a053d5

# Disable any user interaction
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.12.6-alpine@sha256:7130f75b1bb16c7c5d802782131b4024fe3d7a87ce7d936e8948c2d2e0180bc4
FROM python:3.12.7-alpine@sha256:9351a79325f7f2b756caabfd58e6398864cd2793e92335db8369c568387794bd

RUN apk add --no-cache gcc libc-dev libffi-dev && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --user selenium googletrans=="3.1.0a0" requests


FROM python:3.12.6-alpine@sha256:7130f75b1bb16c7c5d802782131b4024fe3d7a87ce7d936e8948c2d2e0180bc4
FROM python:3.12.7-alpine@sha256:9351a79325f7f2b756caabfd58e6398864cd2793e92335db8369c568387794bd

RUN apk add --no-cache chromium chromium-chromedriver && \
rm -rf /var/cache/apk/* /tmp/* /usr/share/doc
Expand Down

0 comments on commit 6f93200

Please sign in to comment.