@@ -38,7 +38,7 @@ RUN NODE_ENV=production npm run build
38
38
39
39
40
40
# We'll build a light-weight layer along the way with just docs stuff
41
- FROM python:3.13.1 -slim-bookworm AS docs
41
+ FROM python:3.13.2 -slim-bookworm AS docs
42
42
43
43
# By default, Docker has special steps to avoid keeping APT caches in the layers, which
44
44
# is good, but in our case, we're going to mount a special cache volume (kept between
@@ -107,7 +107,7 @@ USER docs
107
107
108
108
# Now we're going to build our actual application, but not the actual production
109
109
# image that it gets deployed into.
110
- FROM python:3.13.1 -slim-bookworm AS build
110
+ FROM python:3.13.2 -slim-bookworm AS build
111
111
112
112
# Define whether we're building a production or a development image. This will
113
113
# generally be used to control whether or not we install our development and
@@ -191,7 +191,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
191
191
192
192
# Now we're going to build our actual application image, which will eventually
193
193
# pull in the static files that were built above.
194
- FROM python:3.13.1 -slim-bookworm
194
+ FROM python:3.13.2 -slim-bookworm
195
195
196
196
# Setup some basic environment variables that are ~never going to change.
197
197
ENV PYTHONUNBUFFERED 1
0 commit comments