mirror of
https://github.com/goauthentik/authentik
synced 2026-05-08 16:13:02 +02:00
13 lines
202 B
Docker
13 lines
202 B
Docker
FROM golang:1.15 AS builder
|
|
|
|
WORKDIR /work
|
|
|
|
COPY . .
|
|
|
|
RUN go build -o /work/proxy .
|
|
|
|
# Copy binary to alpine
|
|
FROM gcr.io/distroless/base-debian10
|
|
COPY --from=builder /work/proxy /
|
|
ENTRYPOINT ["/proxy"]
|