FROM golang:1.14-alpine WORKDIR /go/src/app COPY . . RUN go get -d -v ./... RUN go install -v ./... CMD ordercollect --port 8080 EXPOSE 8080