summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGilbert Gilb's <gilbsgilbs@users.noreply.github.com>2017-05-14 09:56:03 +0200
committerAlbert Nigmatzianov <albertnigma@gmail.com>2017-05-14 09:56:03 +0200
commitc7646551bed0cfe81aa0581d7b50f46bb77aa2a8 (patch)
treeb5da2263cf5434d217cac8905f245e968e2b8333 /Dockerfile
parentaf72db806f2c1c0bf1dfe5832275c41eeba89906 (diff)
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.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 0 insertions, 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"