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.
This commit is contained in:
Gilbert Gilb's 2017-05-14 09:56:03 +02:00 committed by Albert Nigmatzianov
parent af72db806f
commit c7646551be
1 changed files with 0 additions and 2 deletions

View File

@ -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"