# Copy & customize: mount model.json and rss_world.txt, set --title flag as needed FROM golang:1.25-alpine AS builder RUN apk add --no-cache git WORKDIR /build RUN git clone https://your-git-repo-url/scholscan.git . RUN go build -o scholscan . FROM alpine:latest COPY --from=builder /build/scholscan /app/scholscan WORKDIR /app ENTRYPOINT ["/app/scholscan"]