添加 Dockerfile
Some checks failed
Build GHub / build (push) Has been cancelled

This commit is contained in:
XOF
2025-12-27 18:27:42 +08:00
parent b950b29578
commit fc0e774ef5

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Dockerfile
FROM golang:1.21-alpine AS builder
WORKDIR /build
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o GHub
FROM alpine:latest
WORKDIR /app
COPY --from=builder /build/GHub .
EXPOSE 18187
CMD ["./GHub", "-l", "0.0.0.0", "-p", "18187", "-ll", "info", "-w", "github.com"]