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:3.13.1-alpine Docker digest to ef276cd #432

Merged
merged 1 commit into from
Jan 9, 2025
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.1-alpine@sha256:bfd74f8005463fabde28a198bd772a26ef2a92585c9d1be8cb2e8cf54f7d61a9 AS builder
FROM python:3.13.1-alpine@sha256:ef276cd33d811f202f7c150ba9ff30b2ef09a5a54644dea0777bc102582aacee 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.1-alpine@sha256:bfd74f8005463fabde28a198bd772a26ef2a92585c9d1be8cb2e8cf54f7d61a9
FROM python:3.13.1-alpine@sha256:ef276cd33d811f202f7c150ba9ff30b2ef09a5a54644dea0777bc102582aacee

# renovate: datasource=pypi depName=pip versioning=pep440
ARG PIP_VERSION="24.3.1"
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.1-alpine@sha256:bfd74f8005463fabde28a198bd772a26ef2a92585c9d1be8cb2e8cf54f7d61a9
FROM python:3.13.1-alpine@sha256:ef276cd33d811f202f7c150ba9ff30b2ef09a5a54644dea0777bc102582aacee

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.1-alpine@sha256:bfd74f8005463fabde28a198bd772a26ef2a92585c9d1be8cb2e8cf54f7d61a9
FROM python:3.13.1-alpine@sha256:ef276cd33d811f202f7c150ba9ff30b2ef09a5a54644dea0777bc102582aacee

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