From 94f28f109f336283ed7d18c9549a60226138314b Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Thu, 8 Sep 2022 00:35:28 +0000 Subject: [PATCH] Update python Docker tag to v3.10.7 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 417060f..05fd642 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.10.6-slim as build +FROM python:3.10.7-slim as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.10.6-slim +FROM python:3.10.7-slim COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist -- 2.45.2