feat(api/dockerfile.debian): Upgrade Python to 3.12

This commit is contained in:
jon r 2024-10-11 22:09:19 +02:00
parent 07ac7931e2
commit ddd23a7afc
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder FROM python:3.12-slim AS builder
ARG POETRY_VERSION=1.8 ARG POETRY_VERSION=1.8
@ -39,7 +39,7 @@ RUN python3 -m venv --system-site-packages ${VIRTUAL_ENV} && . ${VIRTUAL_ENV}/bi
RUN --mount=type=cache,target=/opt/.cache \ RUN --mount=type=cache,target=/opt/.cache \
poetry install --no-root --extras typesense poetry install --no-root --extras typesense
FROM python:3.11-slim AS runtime FROM python:3.12-slim AS runtime
ARG POETRY_VERSION=1.8 ARG POETRY_VERSION=1.8