Skip to content

Commit

Permalink
fix: Dockerfile to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Sep 28, 2024
1 parent c7e3fa2 commit 46babc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN NODE_ENV=production npm run build

# Now we're going to build our actual application, but not the actual production
# image that it gets deployed into.
FROM python:3.11.1-slim-bullseye as build
FROM python:3.11.10-slim-bullseye as build

# Define whether we're building a production or a development image. This will
# generally be used to control whether or not we install our development and
Expand Down Expand Up @@ -106,7 +106,7 @@ RUN set -x \

# Now we're going to build our actual application image, which will eventually
# pull in the static files that were built above.
FROM python:3.11.1-slim-bullseye
FROM python:3.11.10-slim-bullseye

# Setup some basic environment variables that are ~never going to change.
ENV PYTHONUNBUFFERED 1
Expand Down

0 comments on commit 46babc6

Please sign in to comment.