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.

13 lines
171 B
Docker

12 months ago
FROM golang:1.21.1
12 months ago
WORKDIR /app
12 months ago
COPY go.mod go.sum ./
RUN go mod download && go mod verify
12 months ago
COPY . .
RUN go build -v -o ./bin/server .
12 months ago
EXPOSE 4000
12 months ago
CMD ["./bin/server"]