demo additionnal content for the future

This commit is contained in:
mr
2026-03-09 16:29:32 +01:00
parent cbf32fff48
commit e439e06ac4
19 changed files with 395 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
FROM golang:1.22-alpine AS builder
WORKDIR /app
COPY go.mod .
COPY main.go .
RUN go build -o chu-statistics .
FROM alpine:latest
RUN apk --no-cache add ca-certificates tzdata
RUN mkdir -p /data
WORKDIR /app
COPY --from=builder /app/chu-statistics /usr/local/bin/chu-statistics
ENTRYPOINT ["chu-statistics"]