messing around with atproto. don't use this. it's to see all your .profile. entries in your PDS record chronicler.vlan.foo
0

Configure Feed

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

chronicler / Dockerfile
257 B 11 lines
1FROM node:22-alpine AS builder 2WORKDIR /app 3COPY package*.json ./ 4RUN npm ci 5COPY . . 6RUN npm run build 7 8FROM nginxinc/nginx-unprivileged:alpine 9COPY --from=builder /app/build /usr/share/nginx/html 10COPY nginx.conf /etc/nginx/conf.d/default.conf 11EXPOSE 8080