Skip to content

Commit

Permalink
Update python Docker tag to v3.13.1 (#409)
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 Dec 4, 2024
1 parent cc7aa50 commit 35c8618
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.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373 AS builder
FROM python:3.13.1-alpine@sha256:e75706bf1e6b27311be500015333c8d3e05a9b4ca3908253d490a1889ab632ef 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.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373
FROM python:3.13.1-alpine@sha256:e75706bf1e6b27311be500015333c8d3e05a9b4ca3908253d490a1889ab632ef

# renovate: datasource=pypi depName=pip versioning=pep440
ARG PIP_VERSION="24.3.1"
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.13.0-slim-bookworm@sha256:0de818129b26ed8f46fd772f540c80e277b67a28229531a1ba0fdacfaed19bcb AS builder
FROM python:3.13.1-slim-bookworm@sha256:0b6c2b3e89ef27f07d2c28c82dbc057793411783691f62811003b29ba6ae542e AS builder

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

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



FROM python:3.13.0-slim-bookworm@sha256:0de818129b26ed8f46fd772f540c80e277b67a28229531a1ba0fdacfaed19bcb AS geckodriver
FROM python:3.13.1-slim-bookworm@sha256:0b6c2b3e89ef27f07d2c28c82dbc057793411783691f62811003b29ba6ae542e AS geckodriver

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

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



FROM python:3.13.0-slim-bookworm@sha256:0de818129b26ed8f46fd772f540c80e277b67a28229531a1ba0fdacfaed19bcb
FROM python:3.13.1-slim-bookworm@sha256:0b6c2b3e89ef27f07d2c28c82dbc057793411783691f62811003b29ba6ae542e

# 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.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373
FROM python:3.13.1-alpine@sha256:e75706bf1e6b27311be500015333c8d3e05a9b4ca3908253d490a1889ab632ef

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.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373
FROM python:3.13.1-alpine@sha256:e75706bf1e6b27311be500015333c8d3e05a9b4ca3908253d490a1889ab632ef

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

0 comments on commit 35c8618

Please sign in to comment.