21 lines
332 B
Docker
21 lines
332 B
Docker
# Dockerfile
|
|
FROM golang:1.25-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", "time.is"]
|