1
0
mirror of https://github.com/dutchcoders/transfer.sh.git synced 2020-11-18 19:53:40 -08:00

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