2021-09-10 17:18:11 +01:00
|
|
|
# Stage 1: Build website
|
2021-09-29 08:52:07 +01:00
|
|
|
FROM docker.io/node as web-builder
|
2021-09-07 15:44:15 +01:00
|
|
|
|
|
|
|
COPY ./web /static/
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN cd /static && npm i && npm run build
|
|
|
|
|
2021-05-30 16:28:58 +01:00
|
|
|
# Stage 2: Build
|
2021-10-08 07:34:37 +01:00
|
|
|
FROM docker.io/golang:1.17.2 AS builder
|
2020-09-02 23:04:12 +01:00
|
|
|
|
2021-06-16 11:02:02 +01:00
|
|
|
WORKDIR /go/src/goauthentik.io
|
2020-09-02 23:04:12 +01:00
|
|
|
|
2021-06-16 11:02:02 +01:00
|
|
|
COPY . .
|
2021-09-07 15:44:15 +01:00
|
|
|
COPY --from=web-builder /static/robots.txt /work/web/robots.txt
|
|
|
|
COPY --from=web-builder /static/security.txt /work/web/security.txt
|
|
|
|
COPY --from=web-builder /static/dist/ /work/web/dist/
|
|
|
|
COPY --from=web-builder /static/authentik/ /work/web/authentik/
|
2020-09-02 23:04:12 +01:00
|
|
|
|
2021-05-30 16:28:58 +01:00
|
|
|
RUN go build -o /go/proxy ./cmd/proxy
|
2020-09-02 23:04:12 +01:00
|
|
|
|
2021-05-30 16:28:58 +01:00
|
|
|
# Stage 3: Run
|
2020-09-19 10:43:22 +01:00
|
|
|
FROM gcr.io/distroless/base-debian10:debug
|
|
|
|
|
2021-07-21 20:31:25 +01:00
|
|
|
ARG GIT_BUILD_HASH
|
|
|
|
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
|
|
|
|
2021-05-30 16:28:58 +01:00
|
|
|
COPY --from=builder /go/proxy /
|
2020-09-19 10:43:22 +01:00
|
|
|
|
2021-09-09 14:52:24 +01:00
|
|
|
HEALTHCHECK CMD [ "wget", "--spider", "http://localhost:9300/akprox/ping" ]
|
2020-09-19 10:43:22 +01:00
|
|
|
|
2021-09-21 20:40:08 +01:00
|
|
|
EXPOSE 9000 9300 9443
|
|
|
|
|
2020-09-02 23:04:12 +01:00
|
|
|
ENTRYPOINT ["/proxy"]
|