Remove GOOS environment variable

This commit is contained in:
Ilya Glotov 2017-12-12 15:33:20 +03:00
parent ae7a13db21
commit 39e3b5ae5c
No known key found for this signature in database
GPG key ID: AE18CC224730A36D

View file

@ -12,7 +12,7 @@ COPY . /go/src/github.com/chihaya/chihaya
# Install our golang dependencies and compile our binary.
RUN glide install
RUN CGO_ENABLED=0 GOOS=linux go install github.com/chihaya/chihaya/cmd/chihaya
RUN CGO_ENABLED=0 go install github.com/chihaya/chihaya/cmd/chihaya
RUN adduser -D chihaya
FROM scratch