From c7646551bed0cfe81aa0581d7b50f46bb77aa2a8 Mon Sep 17 00:00:00 2001 From: Gilbert Gilb's Date: Sun, 14 May 2017 09:56:03 +0200 Subject: [PATCH] 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. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 159700a24..f74e6e5bc 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"