From e794075ea0dfab611591f24300d26147293ac163 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Mon, 19 May 2025 19:35:25 +0200 Subject: [PATCH 1/3] Use python:3.11.12 image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77605a4..cbe6658 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.7 AS base +FROM python:3.11.12 AS base ENV POETRY_VERSION=1.8.2 \ POETRY_VIRTUALENVS_IN_PROJECT=true \ @@ -50,7 +50,7 @@ EXPOSE $PORT CMD ["./bin/run-dev.sh"] # Production image -FROM python:3.11.7-slim AS prod +FROM python:3.11.12-slim AS prod ARG UID=10001 ARG GID=10001 From 1c59e65a462e245450633c67183a90b27d7bdbf5 Mon Sep 17 00:00:00 2001 From: Tasos Katsoulas Date: Wed, 28 May 2025 11:06:36 +0200 Subject: [PATCH 2/3] Update Dockerfile Co-authored-by: Jan Brasna <1784648+janbrasna@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cbe6658..ae8af79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.12 AS base +FROM python:3.11 AS base ENV POETRY_VERSION=1.8.2 \ POETRY_VIRTUALENVS_IN_PROJECT=true \ From e955eae91af3725478ac6e6f69719ec58a5279d3 Mon Sep 17 00:00:00 2001 From: Tasos Katsoulas Date: Wed, 28 May 2025 11:06:43 +0200 Subject: [PATCH 3/3] Update Dockerfile Co-authored-by: Jan Brasna <1784648+janbrasna@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae8af79..eea83db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ EXPOSE $PORT CMD ["./bin/run-dev.sh"] # Production image -FROM python:3.11.12-slim AS prod +FROM python:3.11-slim AS prod ARG UID=10001 ARG GID=10001