github.com/retailcrm/mg-bot-helper@v0.0.0-20201229112329-a17255681a84/Dockerfile (about)

     1  FROM golang:1.11-stretch
     2  
     3  WORKDIR /
     4  ADD ./bin/bot /
     5  ADD ./templates/ /templates/
     6  ADD ./static/ /static/
     7  ADD ./translate/ /translate/
     8  ADD ./migrations/ /migrations/
     9  
    10  EXPOSE 3001
    11  
    12  ENTRYPOINT ["/bot"]
    13  
    14  CMD ["run"]