@@ -36,7 +36,7 @@ RUN NODE_ENV=production npm run build
36
36
37
37
38
38
# 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
40
40
41
41
# By default, Docker has special steps to avoid keeping APT caches in the layers, which
42
42
# is good, but in our case, we're going to mount a special cache volume (kept between
@@ -105,7 +105,7 @@ USER docs
105
105
106
106
# Now we're going to build our actual application, but not the actual production
107
107
# 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
109
109
110
110
# Define whether we're building a production or a development image. This will
111
111
# 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 \
184
184
185
185
# Now we're going to build our actual application image, which will eventually
186
186
# 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
188
188
189
189
# Setup some basic environment variables that are ~never going to change.
190
190
ENV PYTHONUNBUFFERED 1
0 commit comments