馃П Chunk is a download manager for slow and unstable servers
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 210 B view raw
1FROM golang:1.25-trixie as build 2WORKDIR /chunk 3COPY go.* . 4RUN go mod download 5COPY *.go . 6RUN go build -o /usr/bin/chunk 7 8FROM debian:trixie-slim 9COPY --from=build /usr/bin/chunk /usr/bin/chunk 10CMD ["chunk"]