@@ -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.12.4 -slim-bookworm AS docs
39
+ FROM python:3.12.6 -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.12.4 -slim-bookworm AS build
108
+ FROM python:3.12.6 -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
@@ -189,7 +189,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
189
189
190
190
# Now we're going to build our actual application image, which will eventually
191
191
# pull in the static files that were built above.
192
- FROM python:3.12.4 -slim-bookworm
192
+ FROM python:3.12.6 -slim-bookworm
193
193
194
194
# Setup some basic environment variables that are ~never going to change.
195
195
ENV PYTHONUNBUFFERED 1
0 commit comments