diff --git a/Dockerfile b/Dockerfile index 843ee22a96a6..8a5750a71b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN NODE_ENV=production npm run build # We'll build a light-weight layer along the way with just docs stuff -FROM python:3.12.4-slim-bookworm as docs +FROM python:3.12.6-slim-bookworm as docs # By default, Docker has special steps to avoid keeping APT caches in the layers, which # is good, but in our case, we're going to mount a special cache volume (kept between @@ -105,7 +105,7 @@ USER docs # Now we're going to build our actual application, but not the actual production # image that it gets deployed into. -FROM python:3.12.4-slim-bookworm as build +FROM python:3.12.6-slim-bookworm as build # Define whether we're building a production or a development image. This will # 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 \ # Now we're going to build our actual application image, which will eventually # pull in the static files that were built above. -FROM python:3.12.4-slim-bookworm +FROM python:3.12.6-slim-bookworm # Setup some basic environment variables that are ~never going to change. ENV PYTHONUNBUFFERED 1