From 1efb07c7cce72eca03e7687812ed84fc63c53fc7 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 10 Feb 2023 00:17:15 +0000 Subject: [PATCH] Update python Docker tag to v3.11.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79f35b9..fc1c4f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11.1 as build +FROM python:3.11.2 as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.11.1 +FROM python:3.11.2 COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist