go get -u, go build ldflags, docker tag, inline handler

This commit is contained in:
Andrea Spacca
2021-02-19 14:50:40 +01:00
parent 7522cf5f31
commit 7ea65c5a24
6 changed files with 280 additions and 31 deletions

View File

@@ -1,5 +1,5 @@
# Default to Go 1.13
ARG GO_VERSION=1.13
# Default to Go 1.15
ARG GO_VERSION=1.15
FROM golang:${GO_VERSION}-alpine as build
# Necessary to run 'go get' and to compile the linked binary
@@ -12,7 +12,7 @@ WORKDIR /go/src/github.com/dutchcoders/transfer.sh
ENV GO111MODULE=on
# build & install server
RUN go get -u ./... && CGO_ENABLED=0 go build -ldflags -a -tags netgo -ldflags '-w -extldflags "-static"' -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
RUN go get -u ./... && CGO_ENABLED=0 go build -tags netgo -ldflags '-a -s -w -extldflags "-static"' -o /go/bin/transfersh github.com/dutchcoders/transfer.sh
FROM scratch AS final
LABEL maintainer="Andrea Spacca <andrea.spacca@gmail.com>"