FROM golang:1.23-alpine AS builder LABEL authors="Nite07" RUN apk add --no-cache git WORKDIR /app COPY go.mod go.sum ./ RUN go mod download COPY . . RUN go install github.com/swaggo/swag/cmd/swag@latest RUN swag init ARG version=dev RUN if [ "$version" = "dev" ]; then \ version=$(git describe --tags --always); \ fi && \ CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w -X game-crawler/constant.Version=${version}" -o game-crawler . FROM alpine:latest WORKDIR /app COPY --from=builder /app/game-crawler /app/game-crawler ENTRYPOINT ["/app/game-crawler", "server"]