fix stupid mistake

This commit is contained in:
Dominic Breuker
2018-03-09 08:59:34 +01:00
parent 0e5d2ed39e
commit 67590d8216
3 changed files with 3 additions and 6 deletions

View File

@@ -9,8 +9,10 @@ COPY cmd /go/src/github.com/dominicbreuker/pspy/cmd
COPY internal /go/src/github.com/dominicbreuker/pspy/internal
COPY vendor /go/src/github.com/dominicbreuker/pspy/vendor
# build executable
# run tests
WORKDIR /go/src/github.com/dominicbreuker/pspy
RUN go test ./...
# build executable
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags '-extldflags "-static"' -o bin/pspy main.go
### Prepare integration test ###