You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM golang:1.16
|
|
|
|
WORKDIR /go/src/app
|
|
COPY . .
|
|
|
|
RUN go get -d -v ./...
|
|
RUN go install -v ./...
|
|
|
|
EXPOSE 8083
|
|
|
|
ENV GO111MODULE=on
|
|
ENV GIN_MODE=release
|
|
|
|
CMD go run *.go |