From 6ebfb5138c8b1437a0a65267c0da19b6b70fbe0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 12:05:18 +0100 Subject: [PATCH] core: bump python from 3.11.0-slim-bullseye to 3.11.1-slim-bullseye (#4185) Bumps python from 3.11.0-slim-bullseye to 3.11.1-slim-bullseye. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90be4c1b4..37b399542 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ WORKDIR /work/web RUN npm ci && npm run build # Stage 3: Poetry to requirements.txt export -FROM docker.io/python:3.11.0-slim-bullseye AS poetry-locker +FROM docker.io/python:3.11.1-slim-bullseye AS poetry-locker WORKDIR /work COPY ./pyproject.toml /work @@ -47,7 +47,7 @@ COPY ./go.sum /work/go.sum RUN go build -o /work/authentik ./cmd/server/ # Stage 5: Run -FROM docker.io/python:3.11.0-slim-bullseye AS final-image +FROM docker.io/python:3.11.1-slim-bullseye AS final-image LABEL org.opencontainers.image.url https://goauthentik.io LABEL org.opencontainers.image.description goauthentik.io Main server image, see https://goauthentik.io for more info.