mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
15 lines
181 B
Plaintext
15 lines
181 B
Plaintext
FROM golang:1.22
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /docker-gs-ping
|
|
|
|
EXPOSE 8001
|
|
|
|
CMD ["/docker-gs-ping"] |