diff --git a/server/Dockerfile b/server/Dockerfile index 95c4b3f521d..5a4c022ce3b 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -2,7 +2,7 @@ # Build wheel for megalinter python package ################## FROM ghcr.io/astral-sh/uv:0.4.20 AS uv -FROM python:3.12.7-alpine3.20 AS build-ml-core +FROM python:3.13.0-alpine3.20 AS build-ml-core WORKDIR / COPY pyproject.toml . COPY --from=uv /uv /bin/uv @@ -12,7 +12,7 @@ COPY . . RUN --mount=type=cache,target=/root/.cache/uv \ uv pip install --system . -FROM python:3.12-alpine +FROM python:3.13-alpine RUN apk add --upgrade --no-cache git diff --git a/server/Dockerfile-dev b/server/Dockerfile-dev index d9ca318108f..5443e22524f 100644 --- a/server/Dockerfile-dev +++ b/server/Dockerfile-dev @@ -5,7 +5,7 @@ FROM trufflesecurity/trufflehog:latest as trufflehog # Build wheel for megalinter python package ################## FROM ghcr.io/astral-sh/uv:0.4.20 AS uv -FROM python:3.12.7-alpine3.20 AS build-ml-core +FROM python:3.13.0-alpine3.20 AS build-ml-core WORKDIR / COPY pyproject.toml . COPY --from=uv /uv /bin/uv @@ -15,7 +15,7 @@ COPY . . RUN --mount=type=cache,target=/root/.cache/uv \ uv pip install --system . -FROM python:3.12-alpine +FROM python:3.13-alpine WORKDIR /