authentik/proxy/Dockerfile

17 lines
287 B
Docker
Raw Normal View History

2020-09-02 23:04:12 +01:00
FROM golang:1.15 AS builder
WORKDIR /work
COPY . .
RUN go build -o /work/proxy .
# Copy binary to alpine
2020-09-19 10:43:22 +01:00
FROM gcr.io/distroless/base-debian10:debug
2020-09-02 23:04:12 +01:00
COPY --from=builder /work/proxy /
2020-09-19 10:43:22 +01:00
2020-10-05 21:53:26 +01:00
HEALTHCHECK CMD [ "wget", "--spider", "http://localhost:4180/pbprox/ping" ]
2020-09-19 10:43:22 +01:00
2020-09-02 23:04:12 +01:00
ENTRYPOINT ["/proxy"]