A fork of the Cocoon PDS but being made more distributed.
11

Configure Feed

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

build(docker): copy shell scripts in the run stage (#73)

fix #56

authored by

William Hergès and committed by
GitHub
(Mar 12, 2026, 9:25 AM -0700) 0756641e 2dcc2329

+5 -2
+5 -2
Dockerfile
··· 1 1 ### Compile stage 2 2 FROM golang:1.26.1-bookworm AS build-env 3 3 4 - ADD . /dockerbuild 5 4 WORKDIR /dockerbuild 5 + ADD . . 6 6 7 7 RUN GIT_VERSION=$(git describe --tags --long --always || echo "dev-local") && \ 8 8 go mod tidy && \ ··· 18 18 RUN mkdir -p data/cocoon 19 19 COPY --from=build-env /dockerbuild/cocoon / 20 20 21 + COPY ./init-keys.sh / 22 + COPY ./create-initial-invite.sh / 23 + 21 24 CMD ["/cocoon", "run"] 22 25 23 26 LABEL org.opencontainers.image.source=https://github.com/haileyok/cocoon 24 27 LABEL org.opencontainers.image.description="Cocoon ATProto PDS" 25 - LABEL org.opencontainers.image.licenses=MIT 28 + LABEL org.opencontainers.image.licenses=MIT