diff --git a/Dockerfile b/Dockerfile index 0b6fc5b..1175329 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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