@@ -36,7 +36,7 @@ RUN NODE_ENV=production npm run build
3636
3737
3838# We'll build a light-weight layer along the way with just docs stuff
39- FROM python:3.11.7 -slim-bookworm as docs
39+ FROM python:3.11.8 -slim-bookworm as docs
4040
4141# By default, Docker has special steps to avoid keeping APT caches in the layers, which
4242# is good, but in our case, we're going to mount a special cache volume (kept between
@@ -105,7 +105,7 @@ USER docs
105105
106106# Now we're going to build our actual application, but not the actual production
107107# image that it gets deployed into.
108- FROM python:3.11.7 -slim-bookworm as build
108+ FROM python:3.11.8 -slim-bookworm as build
109109
110110# Define whether we're building a production or a development image. This will
111111# generally be used to control whether or not we install our development and
@@ -184,7 +184,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
184184
185185# Now we're going to build our actual application image, which will eventually
186186# pull in the static files that were built above.
187- FROM python:3.11.7 -slim-bookworm
187+ FROM python:3.11.8 -slim-bookworm
188188
189189# Setup some basic environment variables that are ~never going to change.
190190ENV PYTHONUNBUFFERED 1
0 commit comments