diff --git a/Dockerfile b/Dockerfile index 34603b32..47c16ded 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-bookworm as builder +FROM python:3.13-bookworm as builder WORKDIR /app # Install build utilities and python requirements @@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip install --user . --no-compile COPY ./ ./ # Stage 2: Production -FROM python:3.12-slim-bookworm +FROM python:3.13-slim-bookworm WORKDIR /app COPY --from=builder /root/.local /root/.local ENV PATH=/root/.local/bin:${PATH} diff --git a/Dockerfile.dev b/Dockerfile.dev index 8f767771..4e1cd4d8 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.12 +FROM python:3.13 #################### # Install Graphite #