2021-09-10 16:18:11 +00:00
|
|
|
# Stage 1: Build website
|
2023-10-20 09:17:58 +00:00
|
|
|
FROM --platform=${BUILDPLATFORM} docker.io/node:21 as web-builder
|
2021-09-07 14:44:15 +00:00
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2023-05-16 10:45:10 +00:00
|
|
|
WORKDIR /static
|
2023-04-24 07:02:04 +00:00
|
|
|
|
|
|
|
COPY web/package.json .
|
|
|
|
COPY web/package-lock.json .
|
2023-08-25 17:32:34 +00:00
|
|
|
RUN --mount=type=bind,target=/static/package.json,src=./web/package.json \
|
|
|
|
--mount=type=bind,target=/static/package-lock.json,src=./web/package-lock.json \
|
|
|
|
--mount=type=cache,target=/root/.npm \
|
2023-04-24 07:02:04 +00:00
|
|
|
npm ci --include=dev
|
|
|
|
|
|
|
|
COPY web .
|
|
|
|
RUN npm run build-proxy
|
2021-09-07 14:44:15 +00:00
|
|
|
|
2021-05-30 15:28:58 +00:00
|
|
|
# Stage 2: Build
|
2023-11-08 04:13:36 +00:00
|
|
|
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.21.4-bookworm AS builder
|
2023-11-01 17:41:48 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
|
|
|
|
|
|
|
ARG GOOS=$TARGETOS
|
|
|
|
ARG GOARCH=$TARGETARCH
|
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
|
|
|
|
2023-08-25 17:32:34 +00:00
|
|
|
RUN --mount=type=bind,target=/go/src/goauthentik.io/go.mod,src=./go.mod \
|
|
|
|
--mount=type=bind,target=/go/src/goauthentik.io/go.sum,src=./go.sum \
|
|
|
|
--mount=type=bind,target=/go/src/goauthentik.io/gen-go-api,src=./gen-go-api \
|
|
|
|
--mount=type=cache,target=/go/pkg/mod \
|
2023-04-24 07:02:04 +00:00
|
|
|
go mod download
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-11-02 09:11:51 +00:00
|
|
|
ENV CGO_ENABLED=0
|
2023-04-24 07:02:04 +00:00
|
|
|
COPY . .
|
|
|
|
RUN --mount=type=cache,target=/go/pkg/mod \
|
|
|
|
--mount=type=cache,target=/root/.cache/go-build \
|
2023-11-01 17:41:48 +00:00
|
|
|
GOARM="${TARGETVARIANT#v}" 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
|
|
|
|
2023-06-23 22:10:27 +00:00
|
|
|
ARG GIT_BUILD_HASH
|
|
|
|
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
|
|
|
|
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
|
2023-06-23 22:10:27 +00:00
|
|
|
LABEL org.opencontainers.image.version ${VERSION}
|
|
|
|
LABEL org.opencontainers.image.revision ${GIT_BUILD_HASH}
|
2021-07-21 19:31:25 +00:00
|
|
|
|
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
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
HEALTHCHECK --interval=5s --retries=20 --start-period=3s CMD [ "/proxy", "healthcheck" ]
|
2020-09-19 09:43:22 +00:00
|
|
|
|
2021-09-21 19:40:08 +00:00
|
|
|
EXPOSE 9000 9300 9443
|
|
|
|
|
2023-04-09 19:39:07 +00:00
|
|
|
USER 1000
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
ENTRYPOINT ["/proxy"]
|