From abc10a2c72fb0e7ea4e06b73ccd7f9a8b65e1b43 Mon Sep 17 00:00:00 2001 From: Petitminion Date: Mon, 1 Sep 2025 23:17:44 +0200 Subject: [PATCH] chore(backend):use debian bookworm instead of trixie --- api/Dockerfile.debian | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/Dockerfile.debian b/api/Dockerfile.debian index 8e4de64bb..7f2060d73 100644 --- a/api/Dockerfile.debian +++ b/api/Dockerfile.debian @@ -1,5 +1,4 @@ -FROM python:3.13-slim AS builder - +FROM python:3.13-slim-bookworm AS builder ARG POETRY_VERSION=1.8 ENV DEBIAN_FRONTEND=noninteractive @@ -39,7 +38,7 @@ RUN python3 -m venv --system-site-packages ${VIRTUAL_ENV} && . ${VIRTUAL_ENV}/bi RUN --mount=type=cache,target=/opt/.cache \ poetry install --no-root --extras typesense -FROM python:3.13-slim AS runtime +FROM python:3.13-slim-bookworm AS runtime ARG POETRY_VERSION=1.8