mirror of
https://github.com/retailcrm/mg-bot-helper.git
synced 2025-04-10 12:30:54 +00:00
14 lines
211 B
Docker
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"]
|