From f7d2e920119f8597589e14bfcece3d3f22bfa870 Mon Sep 17 00:00:00 2001 From: Francisco Souza <fsouza@users.noreply.github.com> Date: Fri, 15 Feb 2019 10:52:48 -0500 Subject: [PATCH] Dockerfile: copy the binary to /bin/ instead of $GOPATH/bin/ Closes #393. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e3fc8fad..9a859f44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM golang:1.11 -COPY golangci-lint $GOPATH/bin/ +COPY golangci-lint /bin/ CMD ["golangci-lint"]