1
0
mirror of synced 2025-01-30 20:01:42 +03:00

15 lines
228 B
Docker
Raw Normal View History

2018-05-18 15:38:59 +03:00
FROM golang:1.9.3-stretch
WORKDIR /
2018-05-18 15:38:59 +03:00
ADD ./bin/mg-telegram /
ADD ./templates/ /templates/
ADD ./static/ /static/
2018-05-18 18:41:29 +03:00
ADD ./translate/ /translate/
2018-05-24 11:33:04 +03:00
ADD ./migrations/ /migrations/
EXPOSE 3001
2018-05-18 17:34:31 +03:00
ENTRYPOINT ["/mg-telegram"]
CMD ["run"]