Dockerfile-go-bot 427 B

12345678910
  1. # Start from a Debian image with the latest version of Go installed
  2. # and a workspace (GOPATH) configured at /go.
  3. FROM buildpack-deps:jessie-scm
  4. # Copy the local package files to the container's workspace.
  5. ADD bin/battlecamp-go-server /go/bin/battlecamp-go-bot
  6. RUN ["chmod", "755", "/go/bin/battlecamp-go-bot"]
  7. # Run the battlecamp-go-bot command by default when the container starts.
  8. ENTRYPOINT ["/go/bin/battlecamp-go-bot"]