1
0
mirror of synced 2024-11-21 20:16:02 +03:00

Add static files to Dockerfile

This commit is contained in:
Alex Lushpai 2018-05-18 17:34:31 +03:00
parent 204266df16
commit 576f266835

View File

@ -3,7 +3,10 @@ FROM golang:1.9.3-stretch
WORKDIR /
ADD ./bin/mg-telegram /
ADD ./templates/ /templates/
ADD ./web/ /web/
EXPOSE 3001
ENTRYPOINT ["/mg-telegram", "run"]
ENTRYPOINT ["/mg-telegram"]
CMD ["run"]