2021-09-10 17:18:11 +01:00
|
|
|
# Stage 1: Build
|
2023-06-07 09:47:02 +01:00
|
|
|
FROM docker.io/golang:1.20.5-bullseye AS builder
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2021-06-16 11:02:02 +01:00
|
|
|
WORKDIR /go/src/goauthentik.io
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2021-06-16 11:02:02 +01:00
|
|
|
COPY . .
|
2021-11-02 09:11:51 +00:00
|
|
|
ENV CGO_ENABLED=0
|
2021-05-30 16:28:58 +01:00
|
|
|
RUN go build -o /go/ldap ./cmd/ldap
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2021-09-10 17:18:11 +01:00
|
|
|
# Stage 2: Run
|
2021-11-02 09:11:51 +00:00
|
|
|
FROM gcr.io/distroless/static-debian11:debug
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2023-06-23 23:10:27 +01: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 23:10:27 +01:00
|
|
|
LABEL org.opencontainers.image.version ${VERSION}
|
|
|
|
LABEL org.opencontainers.image.revision ${GIT_BUILD_HASH}
|
2021-07-21 20:31:25 +01:00
|
|
|
|
2021-05-30 16:28:58 +01:00
|
|
|
COPY --from=builder /go/ldap /
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2023-04-21 11:32:48 +01:00
|
|
|
HEALTHCHECK --interval=5s --retries=20 --start-period=3s CMD [ "/ldap", "healthcheck" ]
|
2021-06-06 22:07:13 +01:00
|
|
|
|
2021-09-21 20:40:08 +01:00
|
|
|
EXPOSE 3389 6636 9300
|
|
|
|
|
2023-04-09 20:39:07 +01:00
|
|
|
USER 1000
|
|
|
|
|
2021-04-26 14:35:56 +01:00
|
|
|
ENTRYPOINT ["/ldap"]
|