caching-proxy/Containerfile
Renovate Bot af10b6e8fe
Some checks failed
/ build-container (push) Failing after 1m15s
Update golang Docker tag to v1.23
2024-09-08 06:00:58 +00:00

9 lines
266 B
Docker

FROM library/golang:1.23 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"]