From b1325917309e363cd8b6d7704be3fed3c5df3f61 Mon Sep 17 00:00:00 2001 From: BluemediaDev Date: Sun, 2 Feb 2025 21:02:44 +0100 Subject: [PATCH 1/2] Fix poetry install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e914d2f..088b5cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ WORKDIR $PYSETUP_PATH COPY poetry.lock pyproject.toml ./ # install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally -RUN poetry install --no-dev +RUN poetry install # `production` image used for runtime FROM python-base as production From 6da948ff33f42d2f14ac2a9a9b23b7466d18555e Mon Sep 17 00:00:00 2001 From: BluemediaDev Date: Sun, 2 Feb 2025 21:07:50 +0100 Subject: [PATCH 2/2] Update runtime to Python 3.12 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 088b5cc..8c981c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # `python-base` sets up all our shared environment variables -FROM python:3.11-slim as python-base +FROM python:3.12-slim as python-base # python ENV PYTHONUNBUFFERED=1 \