mg-bot-helper/Dockerfile
2019-02-19 12:33:44 +03:00

14 lines
211 B
Docker

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