mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
Merge pull request #231 from dopessoa/ISSUE-219
Update Dockerfile generating smaller image
This commit is contained in:
commit
b34bec004e
1 changed files with 16 additions and 7 deletions
23
Dockerfile
23
Dockerfile
|
@ -1,14 +1,23 @@
|
||||||
FROM golang:1.12-alpine as build
|
# Default to Go 1.12
|
||||||
LABEL maintainer="Andrea Spacca <andrea.spacca@gmail.com>"
|
ARG GO_VERSION=1.12
|
||||||
|
FROM golang:${GO_VERSION}-alpine as build
|
||||||
|
|
||||||
|
# Necessary to run 'go get' and to compile the linked binary
|
||||||
|
RUN apk add git musl-dev
|
||||||
|
|
||||||
# Copy the local package files to the container's workspace.
|
|
||||||
ADD . /go/src/github.com/dutchcoders/transfer.sh
|
ADD . /go/src/github.com/dutchcoders/transfer.sh
|
||||||
|
|
||||||
# build & install server
|
WORKDIR /go/src/github.com/dutchcoders/transfer.sh
|
||||||
RUN go build -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
|
|
||||||
|
|
||||||
FROM golang:1.11-alpine
|
ENV GO111MODULE=on
|
||||||
COPY --from=build /go/bin/transfersh /go/bin/transfersh
|
|
||||||
|
# build & install server
|
||||||
|
RUN go get -u ./... && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags -a -tags netgo -ldflags '-w -extldflags "-static"' -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
|
||||||
|
|
||||||
|
FROM scratch AS final
|
||||||
|
LABEL maintainer="Andrea Spacca <andrea.spacca@gmail.com>"
|
||||||
|
|
||||||
|
COPY --from=build /go/bin/transfersh /go/bin/transfersh
|
||||||
|
|
||||||
ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080"]
|
ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue