From 471f9c6d050581ad270528d23f8905f7f7ec49a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Oct 2021 09:35:01 +0200 Subject: [PATCH] build(deps): bump python from 3.9-slim-buster to 3.10.0-slim-buster (#1546) Bumps python from 3.9-slim-buster to 3.10.0-slim-buster. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... 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 1718b113c0..a49575f8c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Lock python dependencies -FROM docker.io/python:3.9-slim-buster as locker +FROM docker.io/python:3.10.0-slim-buster as locker COPY ./Pipfile /app/ COPY ./Pipfile.lock /app/ @@ -47,7 +47,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-buster +FROM docker.io/python:3.10.0-slim-buster WORKDIR / COPY --from=locker /app/requirements.txt /