mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-02 17:10:18 +01:00
26 lines
815 B
Docker
26 lines
815 B
Docker
# Default to Go 1.12
|
|
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
|
|
|
|
ADD . /go/src/github.com/dutchcoders/transfer.sh
|
|
|
|
WORKDIR /go/src/github.com/dutchcoders/transfer.sh
|
|
|
|
ENV GO111MODULE=on
|
|
ENV APP_PORT=80
|
|
|
|
# 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
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
ENTRYPOINT /go/bin/transfersh --listener :$APP_PORT
|
|
|
|
EXPOSE 8080
|