From dc782498b44205f6c1a18d6acbd7f42b11398cce Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 26 Aug 2023 21:42:36 +0200 Subject: [PATCH] root: re-fix docker build paths Signed-off-by: Jens Langhammer --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3734e70d1..fea4f75b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ COPY ./internal /work/internal COPY ./go.mod /work/go.mod COPY ./go.sum /work/go.sum -RUN go build -o /work/authentik ./cmd/server/ +RUN go build -o /work/bin/authentik ./cmd/server/ # Stage 5: MaxMind GeoIP FROM ghcr.io/maxmind/geoipupdate:v6.0 as geoip @@ -105,7 +105,7 @@ COPY ./tests /tests COPY ./manage.py / COPY ./blueprints /blueprints COPY ./lifecycle/ /lifecycle -COPY --from=go-builder /work/authentik /bin/authentik +COPY --from=go-builder /work/bin/authentik /bin/authentik COPY --from=web-builder /work/web/dist/ /web/dist/ COPY --from=web-builder /work/web/authentik/ /web/authentik/ COPY --from=website-builder /work/website/help/ /website/help/