Skip to content
This repository was archived by the owner on Sep 27, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WORKDIR /work/web
RUN npm ci && npm run build

# Stage 3: Poetry to requirements.txt export
FROM docker.io/python:3.10.6-slim-bullseye AS poetry-locker
FROM docker.io/python:3.10.7-slim-bullseye AS poetry-locker

WORKDIR /work
COPY ./pyproject.toml /work
Expand All @@ -46,7 +46,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.10.6-slim-bullseye
FROM docker.io/python:3.10.7-slim-bullseye

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.
Expand Down