Skip to content

Commit

Permalink
fix: backend/quart_api/Dockerfile.alpine to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Nov 26, 2024
1 parent f1cf7f0 commit 041342e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/quart_api/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-alpine as builder
FROM python:3.14.0a2-alpine as builder

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand All @@ -17,7 +17,7 @@ RUN POETRY_VIRTUALENVS_CREATE=false poetry install --no-dev



FROM python:3.8-alpine as final
FROM python:3.14.0a2-alpine as final

COPY --chown=nobody:nogroup --from=builder /venv /venv
ENV PATH=/venv/bin:${PATH}
Expand Down

0 comments on commit 041342e

Please sign in to comment.