From: Gilbert Gilb's Date: Sun, 14 May 2017 07:56:03 +0000 (+0200) Subject: Dockerfile: Remove ENTRYPOINT X-Git-Tag: v0.21~28 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c7646551;p=brevno-suite%2Fhugo Dockerfile: Remove ENTRYPOINT It's pointless to set `/bin/sh` as entrypoint. `/bin/sh` is already the default command, and on the top of that, setting `/bin/sh` as entrypoint ignores the command. --- diff --git a/Dockerfile b/Dockerfile index 159700a2..f74e6e5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,3 @@ COPY . $GOPATH/src/github.com/spf13/hugo RUN cd $GOPATH/src/github.com/spf13/hugo \ && make install test - -ENTRYPOINT "/bin/sh"