From 39e3b5ae5c155c3db53d4853b52d44f7398a4f38 Mon Sep 17 00:00:00 2001 From: Ilya Glotov Date: Tue, 12 Dec 2017 15:33:20 +0300 Subject: [PATCH] Remove GOOS environment variable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a3ae65..5e17454 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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