We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f4866 commit 431c09dCopy full SHA for 431c09d
Dockerfile
@@ -3,12 +3,11 @@ FROM golang:latest as builder
3
WORKDIR /build
4
ADD . /build
5
6
-RUN go get -t -v ./... && \
7
- go build -o azure-blob-storage-proxy ./cmd/
+RUN CGO_ENABLED=0 go build -o azure-blob-storage-proxy ./cmd/
8
9
FROM alpine:latest
10
LABEL org.opencontainers.image.source=https://github.com/cirruslabs/azure-blob-storage-proxy/
11
12
WORKDIR /svc
13
COPY --from=builder /build/azure-blob-storage-proxy /svc/
14
-ENTRYPOINT ["/svc/azure-blob-storage-proxy"]
+ENTRYPOINT ["/svc/azure-blob-storage-proxy"]
0 commit comments