URI: 
       Dockerfile: Remove ENTRYPOINT - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit c7646551bed0cfe81aa0581d7b50f46bb77aa2a8
   DIR parent af72db806f2c1c0bf1dfe5832275c41eeba89906
  HTML Author: Gilbert Gilb's <gilbsgilbs@users.noreply.github.com>
       Date:   Sun, 14 May 2017 09:56:03 +0200
       
       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:
         M Dockerfile                          |       2 --
       
       1 file changed, 0 insertions(+), 2 deletions(-)
       ---
   DIR diff --git 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"