From 0ffda8b6610cc1c3ce4df9e18a69c9ea27fd44ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 12:56:38 +0000 Subject: [PATCH] Bump python from 3.12-alpine to 3.13-alpine in /server Bumps python from 3.12-alpine to 3.13-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- server/Dockerfile | 4 ++-- server/Dockerfile-dev | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index 2993bc1f60f..907c3b64757 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -2,7 +2,7 @@ # Build wheel for megalinter python package ################## FROM ghcr.io/astral-sh/uv:0.5.1 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 a990eef79b7..fb6ab46804d 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.5.1 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 /