this repo has no description
0
fork

Configure Feed

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

tweak bluepages dockerfile

+3 -3
+3 -3
cmd/bluepages/Dockerfile
··· 18 18 FROM alpine:3.20 19 19 20 20 RUN apk add --no-cache --update dumb-init ca-certificates runit 21 - ENTRYPOINT ["dumb-init", "--"] 22 21 23 22 WORKDIR / 24 23 RUN mkdir -p data/bluepages ··· 28 27 ENV GODEBUG=netdns=go 29 28 ENV TZ=Etc/UTC 30 29 31 - EXPOSE 2210 30 + EXPOSE 6600 32 31 33 - CMD ["/bluepages", "run"] 32 + ENTRYPOINT ["/usr/bin/dumb-init", "--"] 33 + CMD ["/bluepages", "serve"] 34 34 35 35 LABEL org.opencontainers.image.source=https://github.com/bluesky-social/indigo 36 36 LABEL org.opencontainers.image.description="atproto identity directory (bluepages)"