Skip to content

Commit 26a3446

Browse files
chore(deps): Upgrade Python runtime from 3.11.7 to 3.11.8 (#15446)
Co-authored-by: Mike Fiedler <[email protected]>
1 parent b614481 commit 26a3446

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11.7
1+
3.11.8

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
190190
ENV PYTHONUNBUFFERED 1

0 commit comments

Comments
 (0)