Update deps, update python to 3.11

This commit is contained in:
2022-10-26 21:32:37 +02:00
parent 5c3bfc7f28
commit 169bb4486d
3 changed files with 321 additions and 135 deletions

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/kurbezz/base_docker_images:3.10-postgres-asyncpg-poetry-buildtime as build-image
FROM ghcr.io/flibusta-apps/base_docker_images:3.11-postgres-asyncpg-poetry-buildtime as build-image
RUN apt-get update \
&& apt-get install git -y --no-install-recommends \
@@ -14,7 +14,7 @@ RUN poetry export --without-hashes > requirements.txt \
&& pip install -r requirements.txt --no-cache-dir
FROM ghcr.io/kurbezz/base_docker_images:3.10-postgres-runtime as runtime-image
FROM ghcr.io/flibusta-apps/base_docker_images:3.11-postgres-runtime as runtime-image
WORKDIR /app