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

[Snyk] Security upgrade python from 3.12.5-alpine to 3.14.0a1-alpine #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.5-alpine AS deps
FROM python:3.14.0a1-alpine AS deps

# Rust and Cargo are required to build `pyndatic-core` on ARM platforms
RUN apk add -U cargo git rust \
Expand All @@ -11,7 +11,7 @@ COPY requirements.txt .
# Install dependencies in a separate layer to cache them
RUN pip install --root /tmp/target/ -r requirements.txt

FROM python:3.12.5-alpine AS build
FROM python:3.14.0a1-alpine AS build

RUN pip install build

Expand All @@ -30,7 +30,7 @@ RUN \
python -m build --outdir /tmp/dist/ source/ \
&& pip install --no-deps --root /tmp/target/ /tmp/dist/*-${VERSION}*.whl

FROM python:3.12.5-alpine
FROM python:3.14.0a1-alpine
# Ensure all the OS updates are applied to the resulting image
RUN apk -U upgrade \
&& apk cache clean
Expand Down
Loading