From e38bfc747238b596a27ea47afb29ee7d129f2305 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Wed, 24 Jan 2024 12:37:32 +0100 Subject: [PATCH] chore: update docker tag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bfa6a78..d4779dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11.6 as build +FROM python:3.11.7 as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.11.5 +FROM python:3.11.7 COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist