diff options
author | Gilbert Gilb's <[email protected]> | 2017-05-14 09:56:03 +0200 |
---|---|---|
committer | Albert Nigmatzianov <[email protected]> | 2017-05-14 09:56:03 +0200 |
commit | c7646551bed0cfe81aa0581d7b50f46bb77aa2a8 (patch) | |
tree | b5da2263cf5434d217cac8905f245e968e2b8333 /Dockerfile | |
parent | af72db806f2c1c0bf1dfe5832275c41eeba89906 (diff) | |
download | hugo-c7646551bed0cfe81aa0581d7b50f46bb77aa2a8.tar.gz hugo-c7646551bed0cfe81aa0581d7b50f46bb77aa2a8.zip |
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-- | Dockerfile | 2 |
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" |