2021-09-10 17:18:11 +01:00
|
|
|
# Stage 1: Build
|
2023-03-08 09:52:18 +00:00
|
|
|
FROM docker.io/golang:1.20.2-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
|
|
|
|
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
|
|
|
|
|
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/ldap /
|
2021-04-26 14:35:56 +01:00
|
|
|
|
2022-09-19 20:38:34 +01:00
|
|
|
HEALTHCHECK --interval=5s --retries=20 --start-period=3s CMD [ "wget", "--spider", "http://localhost:9300/outpost.goauthentik.io/ping" ]
|
2021-06-06 22:07:13 +01:00
|
|
|
|
2021-09-21 20:40:08 +01:00
|
|
|
EXPOSE 3389 6636 9300
|
|
|
|
|
2021-04-26 14:35:56 +01:00
|
|
|
ENTRYPOINT ["/ldap"]
|