Fix a warning with getaddrinfo while compiling

add netgo to the build
This commit is contained in:
Christoph Wagner 2018-05-06 00:16:54 +02:00 committed by GitHub
parent c835df9fee
commit cdd0ff7904
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ FROM golang:latest as builder
WORKDIR /go/src/github.com/PierreZ/goStatic WORKDIR /go/src/github.com/PierreZ/goStatic
COPY . . COPY . .
RUN GOARCH=amd64 GOOS=linux go build -ldflags "-linkmode external -extldflags -static -w" RUN GOARCH=amd64 GOOS=linux go build -tags netgo -installsuffix netgo -ldflags "-linkmode external -extldflags -static -w"
# stage 1 # stage 1
FROM centurylink/ca-certs FROM centurylink/ca-certs