2021-09-10 16:18:11 +00:00
|
|
|
# Stage 1: Build website
|
2021-09-29 07:52:07 +00:00
|
|
|
FROM docker.io/node as web-builder
|
2021-09-07 14:44:15 +00:00
|
|
|
|
|
|
|
COPY ./web /static/
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN cd /static && npm i && npm run build
|
|
|
|
|
2021-05-30 15:28:58 +00:00
|
|
|
# Stage 2: Build
|
2021-09-29 07:52:07 +00:00
|
|
|
FROM docker.io/golang:1.17.1 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 . .
|
2021-09-07 14:44:15 +00: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 22:04:12 +00:00
|
|
|
|
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
|
2020-09-19 09:43:22 +00:00
|
|
|
FROM gcr.io/distroless/base-debian10:debug
|
|
|
|
|
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 /
|
2020-09-19 09:43:22 +00:00
|
|
|
|
2021-09-09 13:52:24 +00:00
|
|
|
HEALTHCHECK CMD [ "wget", "--spider", "http://localhost:9300/akprox/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"]
|