Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

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

fix up Dockerfile

dholms ba3bf6b6 650c7520

+3 -3
+3 -3
packages/server/Dockerfile
··· 10 10 # Remove non-prod deps 11 11 RUN yarn install --production --ignore-scripts --prefer-offline > /dev/null 12 12 13 - WORKDIR packages/plc/service 13 + WORKDIR packages/server/service 14 14 RUN yarn install --frozen-lockfile > /dev/null 15 15 16 16 # Uses assets from build stage to reduce build size ··· 22 22 # Avoid zombie processes, handle signal forwarding 23 23 ENTRYPOINT ["dumb-init", "--"] 24 24 25 - WORKDIR /app/packages/plc/service 25 + WORKDIR /app/packages/server/service 26 26 COPY --from=build /app /app 27 27 28 28 EXPOSE 3000 ··· 33 33 USER node 34 34 CMD ["node", "--enable-source-maps", "index.js"] 35 35 36 - LABEL org.opencontainers.image.source=https://github.com/bluesky-social/atproto 36 + LABEL org.opencontainers.image.source=https://github.com/bluesky-social/did-method-plc 37 37 LABEL org.opencontainers.image.description="DID Placeholder server" 38 38 LABEL org.opencontainers.image.licenses=MIT