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.21.1
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY go.mod ./
|
|
|
|
RUN go mod download
|
|
|
|
RUN go mod verify
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
RUN go build -v -o ./bin/server .
|
|
|
|
|
|
|
|
EXPOSE 4000
|
|
|
|
|
|
|
|
CMD ["./bin/server"]
|