ci: docker image and test with python3.12 (#2842)

This commit is contained in:
dni ⚡ 2024-12-18 09:37:29 +01:00 committed by GitHub
parent 37187bfc2c
commit d234ab12d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 10 deletions

View file

@ -1,4 +1,4 @@
FROM python:3.10-slim-bookworm AS builder
FROM python:3.12-slim-bookworm AS builder
RUN apt-get clean
RUN apt-get update
@ -21,7 +21,7 @@ ENV POETRY_NO_INTERACTION=1 \
RUN poetry install --only main
FROM python:3.10-slim-bookworm
FROM python:3.12-slim-bookworm
# needed for backups postgresql-client version 14 (pg_dump)
RUN apt-get update && apt-get -y upgrade && \