diff options
Diffstat (limited to 'Dockerfile.golang')
-rw-r--r-- | Dockerfile.golang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.golang b/Dockerfile.golang index df1bf9d..d77956f 100644 --- a/Dockerfile.golang +++ b/Dockerfile.golang @@ -1,6 +1,6 @@ FROM golang:1.10 as build WORKDIR /go/src/pwman -RUN go get -d -v gopkg.in/ldap.v2 github.com/gorilla/csrf gopkg.in/jcmturner/gokrb5.v5/client gopkg.in/jcmturner/gokrb5.v5/config +RUN go get -d -v gopkg.in/ldap.v2 github.com/gorilla/csrf gopkg.in/jcmturner/gokrb5.v5/client gopkg.in/jcmturner/gokrb5.v5/config github.com/namsral/flag COPY *.go ./ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o pwman . |