Skip to content

Commit

Permalink
Update python Docker tag to v3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 17, 2024
1 parent 882ce65 commit 0c9fbc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:labs
FROM python:3.12.7-slim-bookworm AS pip
FROM python:3.13.0-slim-bookworm AS pip
ENV PYTHONUNBUFFERED=1
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
COPY requirements.txt /tmp/requirements.txt
Expand All @@ -12,7 +12,7 @@ RUN echo 'APT::Install-Recommends "0";' | tee -a /etc/apt/apt.conf.d/01norecomme
python3 -m venv /usr/local && \
pip install --no-cache-dir -r /tmp/requirements.txt

FROM python:3.12.7-slim-bookworm
FROM python:3.13.0-slim-bookworm
ENV PYTHONUNBUFFERED=1
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
COPY --from=pip /usr/local /usr/local
Expand Down

0 comments on commit 0c9fbc4

Please sign in to comment.