fixes #13, allows parameters after docker run command

This commit is contained in:
Remco 2014-12-08 14:11:20 +01:00
parent f60b0ef80c
commit 83c7ef67ca

View file

@ -13,6 +13,6 @@ RUN go get ./
# build & install server
RUN go install .
ENTRYPOINT /go/bin/app --port 8080
ENTRYPOINT ["/go/bin/app", "--port", "8080"]
EXPOSE 8080