FROM golang:latest ADD main.go / WORKDIR / RUN GO111MODULE=off go build -o main . EXPOSE 3011 ENTRYPOINT ["/main"]