From 9f5978186ac3de07f4325975fecf4f538fe713b6 Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Mon, 15 Dec 2025 19:34:17 +1000 Subject: Init v0.1.0 --- Containerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Containerfile (limited to 'Containerfile') diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..58f011f --- /dev/null +++ b/Containerfile @@ -0,0 +1,11 @@ +# 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"] -- cgit v1.2.3