From e3b08694a321e82bcfc4fe502c30af70aa8f1cd8 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Fri, 25 Mar 2022 19:33:15 +0100 Subject: [PATCH] Update python & debian --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23d2301..02028e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ ############################################## # Build virtualenv ############################################## -FROM python:3.10.2-buster AS venv +FROM python:3.10.4-bullseye AS venv # Prepare system ############################################## # https://python-poetry.org/docs/#installation -ENV POETRY_VERSION=1.1.11 -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - +ENV POETRY_VERSION=1.1.13 +RUN curl -sSL https://install.python-poetry.org | python3 - ENV PATH /root/.local/bin:$PATH @@ -47,9 +47,9 @@ RUN git rev-parse HEAD | tee /version ############################################## # Main image ############################################## -FROM python:3.10.2-slim-buster as prod +FROM python:3.10.4-slim-bullseye as prod -ENV TZ="Europe/Paris" +ENV TZ "Europe/Paris" COPY --from=venv /app/venv /app/venv/ ENV PATH /app/venv/bin:$PATH