Skip to content

Commit

Permalink
Bump python from 3.12-alpine to 3.13-alpine in /server
Browse files Browse the repository at this point in the history
Bumps python from 3.12-alpine to 3.13-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 17, 2024
1 parent 9d96540 commit 528b051
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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.4.23 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.4.23 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

0 comments on commit 528b051

Please sign in to comment.