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