2021-09-10 16:18:11 +00:00
|
|
|
# Stage 1: Build
|
2023-10-11 09:36:24 +00:00
|
|
|
FROM docker.io/golang:1.21.3-bookworm AS builder
|
2021-04-26 13:35:56 +00:00
|
|
|
|
2021-06-16 10:02:02 +00:00
|
|
|
WORKDIR /go/src/goauthentik.io
|
2021-04-26 13:35:56 +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
|
|
|
|
|
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 \
|
|
|
|
go build -o /go/ldap ./cmd/ldap
|
2021-04-26 13:35:56 +00:00
|
|
|
|
2021-09-10 16:18:11 +00:00
|
|
|
# Stage 2: Run
|
2021-11-02 09:11:51 +00:00
|
|
|
FROM gcr.io/distroless/static-debian11:debug
|
2021-04-26 13:35:56 +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 LDAP outpost, 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/ldap /
|
2021-04-26 13:35:56 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
HEALTHCHECK --interval=5s --retries=20 --start-period=3s CMD [ "/ldap", "healthcheck" ]
|
2021-06-06 21:07:13 +00:00
|
|
|
|
2021-09-21 19:40:08 +00:00
|
|
|
EXPOSE 3389 6636 9300
|
|
|
|
|
2023-04-09 19:39:07 +00:00
|
|
|
USER 1000
|
|
|
|
|
2021-04-26 13:35:56 +00:00
|
|
|
ENTRYPOINT ["/ldap"]
|