From 1f31c63e57084df28c1a42e4e0820141af39bb70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Dec 2021 07:49:01 +0100 Subject: [PATCH] build(deps): bump python from 3.9-slim-bullseye to 3.10.1-slim-bullseye (#1894) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90fe5fbb8..66e14f5e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Lock python dependencies -FROM docker.io/python:3.9-slim-bullseye as locker +FROM docker.io/python:3.10.1-slim-bullseye as locker COPY ./Pipfile /app/ COPY ./Pipfile.lock /app/ @@ -44,7 +44,7 @@ COPY ./go.sum /work/go.sum RUN go build -o /work/authentik ./cmd/server/main.go # Stage 5: Run -FROM docker.io/python:3.9-slim-bullseye +FROM docker.io/python:3.10.1-slim-bullseye WORKDIR / COPY --from=locker /app/requirements.txt /