caching-proxy/Containerfile
Finn 3883f417d2
Some checks failed
/ build-container (push) Failing after 2m19s
bump containerfile
2024-02-18 14:52:28 -08:00

10 lines
266 B
Docker

FROM library/golang:1.21 as build
ADD * /go/caching-proxy/
WORKDIR /go/caching-proxy
ARG GOPROXY=direct
RUN CGO_ENABLED=0 go build .
FROM gcr.io/distroless/base-debian12
COPY --from=build /go/caching-proxy/caching-proxy /caching-proxy
ENTRYPOINT ["/caching-proxy"]