Skip to content

Commit

Permalink
Update python Docker tag to v3.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 8, 2024
1 parent dd16e05 commit b7a44ad
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.1-alpine@sha256:14cfc61fc2404da8adc7b1cb1fcb299aefafab22ae571f652527184fbb21ce69 AS builder
FROM python:3.12.2-alpine@sha256:f688da3e08fd3d5a08370dadfb887611c33fc19b4c850d5e756cbfd0e3d59277 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.1-alpine@sha256:14cfc61fc2404da8adc7b1cb1fcb299aefafab22ae571f652527184fbb21ce69
FROM python:3.12.2-alpine@sha256:f688da3e08fd3d5a08370dadfb887611c33fc19b4c850d5e756cbfd0e3d59277

# renovate: datasource=pypi depName=pip versioning=pep440
ARG PIP_VERSION="24.0"
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.1-slim-bookworm@sha256:a64ac5be6928c6a94f00b16e09cdf3ba3edd44452d10ffa4516a58004873573e AS builder
FROM python:3.12.2-slim-bookworm@sha256:cddcd8babc47096eddcb1f30818378c145208f7d6cde9199253c0d740fff2918 AS builder

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

Expand Down Expand Up @@ -63,7 +63,7 @@ RUN python3 -m venv $VIRTUAL_ENV && \



FROM python:3.12.1-slim-bookworm@sha256:a64ac5be6928c6a94f00b16e09cdf3ba3edd44452d10ffa4516a58004873573e AS geckodriver
FROM python:3.12.2-slim-bookworm@sha256:cddcd8babc47096eddcb1f30818378c145208f7d6cde9199253c0d740fff2918 AS geckodriver

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

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



FROM python:3.12.1-slim-bookworm@sha256:a64ac5be6928c6a94f00b16e09cdf3ba3edd44452d10ffa4516a58004873573e
FROM python:3.12.2-slim-bookworm@sha256:cddcd8babc47096eddcb1f30818378c145208f7d6cde9199253c0d740fff2918

# 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.1-alpine@sha256:14cfc61fc2404da8adc7b1cb1fcb299aefafab22ae571f652527184fbb21ce69
FROM python:3.12.2-alpine@sha256:f688da3e08fd3d5a08370dadfb887611c33fc19b4c850d5e756cbfd0e3d59277

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.1-alpine@sha256:14cfc61fc2404da8adc7b1cb1fcb299aefafab22ae571f652527184fbb21ce69
FROM python:3.12.2-alpine@sha256:f688da3e08fd3d5a08370dadfb887611c33fc19b4c850d5e756cbfd0e3d59277

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

0 comments on commit b7a44ad

Please sign in to comment.