Skip to content
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.9.4 AS uv
FROM python:3.13-alpine3.21 AS build-ml-core
FROM python:3.14-alpine3.21 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.13-alpine
FROM python:3.14-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.9.4 AS uv
FROM python:3.13-alpine3.21 AS build-ml-core
FROM python:3.14-alpine3.21 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.13-alpine
FROM python:3.14-alpine

WORKDIR /

Expand Down
Loading