shithub: hugo

Download patch

ref: c7646551bed0cfe81aa0581d7b50f46bb77aa2a8
parent: af72db806f2c1c0bf1dfe5832275c41eeba89906
author: Gilbert Gilb's <[email protected]>
date: Sun May 14 05:56:03 EDT 2017

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.

--- a/Dockerfile
+++ b/Dockerfile
@@ -13,5 +13,3 @@
 
 RUN cd $GOPATH/src/github.com/spf13/hugo \
  	&& make install test
-
-ENTRYPOINT "/bin/sh"