From 5b0255276b0af740de1bd9ca2737a3d3c9de6b68 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 14 Oct 2022 00:14:49 +0000 Subject: [PATCH] Update python Docker tag to v3.10.8 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 05fd642..44321ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.10.7-slim as build +FROM python:3.10.8-slim as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.10.7-slim +FROM python:3.10.8-slim COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist