2021-09-10 16:18:11 +00:00
|
|
|
# Stage 1: Build website
|
2022-04-25 10:30:08 +00:00
|
|
|
FROM --platform=${BUILDPLATFORM} docker.io/node:18 as web-builder
|
2021-09-07 14:44:15 +00:00
|
|
|
|
|
|
|
COPY ./web /static/
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2022-04-14 20:30:44 +00:00
|
|
|
RUN cd /static && npm ci && npm run build-proxy
|
2021-09-07 14:44:15 +00:00
|
|
|
|
2021-05-30 15:28:58 +00:00
|
|
|
# Stage 2: Build
|
2022-07-14 08:17:48 +00:00
|
|
|
FROM docker.io/golang:1.18.4-bullseye AS builder
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-06-16 10:02:02 +00:00
|
|
|
WORKDIR /go/src/goauthentik.io
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-06-16 10:02:02 +00:00
|
|
|
COPY . .
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-11-02 09:11:51 +00:00
|
|
|
ENV CGO_ENABLED=0
|
2021-05-30 15:28:58 +00:00
|
|
|
RUN go build -o /go/proxy ./cmd/proxy
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-05-30 15:28:58 +00:00
|
|
|
# Stage 3: Run
|
2021-11-02 09:11:51 +00:00
|
|
|
FROM gcr.io/distroless/static-debian11:debug
|
2020-09-19 09:43:22 +00:00
|
|
|
|
2021-12-30 15:33:13 +00:00
|
|
|
LABEL org.opencontainers.image.url https://goauthentik.io
|
|
|
|
LABEL org.opencontainers.image.description goauthentik.io Proxy outpost image, see https://goauthentik.io for more info.
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/goauthentik/authentik
|
|
|
|
|
2021-07-21 19:31:25 +00:00
|
|
|
ARG GIT_BUILD_HASH
|
|
|
|
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
|
|
|
|
2021-05-30 15:28:58 +00:00
|
|
|
COPY --from=builder /go/proxy /
|
2021-12-02 18:19:45 +00:00
|
|
|
COPY --from=web-builder /static/robots.txt /web/robots.txt
|
|
|
|
COPY --from=web-builder /static/security.txt /web/security.txt
|
|
|
|
COPY --from=web-builder /static/dist/ /web/dist/
|
|
|
|
COPY --from=web-builder /static/authentik/ /web/authentik/
|
2020-09-19 09:43:22 +00:00
|
|
|
|
2022-02-08 19:25:38 +00:00
|
|
|
HEALTHCHECK CMD [ "wget", "--spider", "http://localhost:9300/outpost.goauthentik.io/ping" ]
|
2020-09-19 09:43:22 +00:00
|
|
|
|
2021-09-21 19:40:08 +00:00
|
|
|
EXPOSE 9000 9300 9443
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
ENTRYPOINT ["/proxy"]
|