1
0
mirror of synced 2024-11-21 20:16:02 +03:00
mg-transport-telegram/Dockerfile

15 lines
223 B
Docker
Raw Normal View History

FROM golang:1.11-stretch
WORKDIR /
2018-05-31 15:03:57 +03:00
ADD ./bin/transport /
2018-05-18 15:38:59 +03:00
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-31 15:03:57 +03:00
ENTRYPOINT ["/transport"]
2018-05-18 17:34:31 +03:00
CMD ["run"]