1 2 3 4 5 6 7 8 9 10 11
FROM golang WORKDIR /app COPY . /app RUN go build cmd/main.go EXPOSE 8080 CMD ["/app/main"]