From 304e8e31ff98ef04fd8c1bf992322a7d21c19ab2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 26 Aug 2023 06:39:47 +0000 Subject: [PATCH] Update python Docker tag to v3.11.5 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 49025ef..2c2257b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11.4 as build +FROM python:3.11.5 as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.11.4 +FROM python:3.11.5 COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist