This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
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"]
|