Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump python from 3.12-alpine to 3.13-alpine in /server #4133

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 /

Expand Down
Loading