🧱 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.

Adds Dockerfile

+10
+10
Dockerfile
··· 1 + FROM golang:1.19-bullseye as build 2 + WORKDIR /chunk 3 + COPY go.* . 4 + RUN go mod download 5 + COPY *.go . 6 + RUN go build -o /usr/bin/chunk 7 + 8 + FROM debian:bullseye-slim 9 + COPY --from=build /usr/bin/chunk /usr/bin/chunk 10 + CMD ["chunk"]