transfer.sh/Dockerfile

26 lines
793 B
Text
Raw Normal View History

2021-10-26 19:34:40 +02:00
# Default to Go 1.17
ARG GO_VERSION=1.17
2020-06-14 20:01:38 +02:00
FROM golang:${GO_VERSION}-alpine as build
# Necessary to run 'go get' and to compile the linked binary
RUN apk add git musl-dev
2014-11-11 15:35:16 +01:00
2017-03-22 22:28:05 +01:00
ADD . /go/src/github.com/dutchcoders/transfer.sh
2014-11-11 15:35:16 +01:00
WORKDIR /go/src/github.com/dutchcoders/transfer.sh
ENV GO111MODULE=on
2014-11-11 15:35:16 +01:00
# build & install server
2021-07-09 22:44:07 +02:00
RUN CGO_ENABLED=0 go build -tags netgo -ldflags "-X github.com/dutchcoders/transfer.sh/cmd.Version=$(git describe --tags) -a -s -w -extldflags '-static'" -o /go/bin/transfersh
FROM scratch AS final
LABEL maintainer="Andrea Spacca <andrea.spacca@gmail.com>"
2014-11-11 15:35:16 +01:00
COPY --from=build /go/bin/transfersh /go/bin/transfersh
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080"]
2014-11-11 15:35:16 +01:00
EXPOSE 8080