1
0
mirror of synced 2025-01-30 20:01:42 +03:00
2018-05-29 17:20:56 +03:00

15 lines
228 B
Docker

FROM golang:1.9.3-stretch
WORKDIR /
ADD ./bin/mg-telegram /
ADD ./templates/ /templates/
ADD ./static/ /static/
ADD ./translate/ /translate/
ADD ./migrations/ /migrations/
EXPOSE 3001
ENTRYPOINT ["/mg-telegram"]
CMD ["run"]