From 55789107e0022c0c7b26929e511174de494cf519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Gon=C3=A7alves?= Date: Thu, 7 Sep 2017 14:15:25 +0100 Subject: [PATCH] Docker image built from scratch (#237) * Docker image built from scratch * ldflags aren't need anymore --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90f5fb95..ca676980 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,16 +7,16 @@ RUN apk add --no-cache git RUN go get ./... WORKDIR /go/src/github.com/hacdias/filemanager/cmd/filemanager -RUN go build -ldflags "-X main.version=$(git tag -l --points-at HEAD)" +RUN CGO_ENABLED=0 go build -a RUN mv filemanager /go/bin/filemanager -FROM alpine:latest -COPY --from=0 /go/bin/filemanager /usr/local/bin/filemanager +FROM scratch +COPY --from=0 /go/bin/filemanager /filemanager VOLUME /srv EXPOSE 80 -COPY Docker.json /etc/config.json +COPY Docker.json /config.json -ENTRYPOINT ["/usr/local/bin/filemanager"] -CMD ["--config", "/etc/config.json"] +ENTRYPOINT ["/filemanager"] +CMD ["--config", "/config.json"]