From 371922e2a9fc62a1a2bcb07baa2a9d59c5df4547 Mon Sep 17 00:00:00 2001 From: Alexander Menzhinsky Date: Wed, 17 Oct 2018 14:30:10 +0300 Subject: [PATCH] Replace ENTRYPOINT with CMD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b83e1787b316..0cb7b3405db9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,4 @@ FROM golang:1.11 RUN apt-get update && apt-get install -y gcc COPY golangci-lint $GOPATH/bin/ -ENTRYPOINT ["golangci-lint"] +CMD ["golangci-lint"]