Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python Docker tag to v3.13.1 #409

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading