Try move to 3.12

This commit is contained in:
2023-11-07 13:46:35 +01:00
parent 6249342de6
commit 1db10c450e
3 changed files with 97 additions and 90 deletions

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/flibusta-apps/base_docker_images:3.11-poetry-buildtime AS build-image
FROM ghcr.io/flibusta-apps/base_docker_images:3.12-poetry-buildtime AS build-image
WORKDIR /root/poetry
COPY pyproject.toml poetry.lock /root/poetry/
@@ -10,7 +10,7 @@ RUN poetry export --without-hashes > requirements.txt \
&& pip install -r requirements.txt --no-cache-dir
FROM ghcr.io/flibusta-apps/base_docker_images:3.11-postgres-runtime AS runtime-image
FROM ghcr.io/flibusta-apps/base_docker_images:3.12-postgres-runtime AS runtime-image
WORKDIR /app