slack status without the slack status.zzstoatzz.io
hatk statusphere
0
fork

Configure Feed

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

at main 12 lines 428 B view raw
1FROM node:25-slim 2RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl sqlite3 \ 3 && rm -rf /var/lib/apt/lists/* 4WORKDIR /app 5COPY package.json package-lock.json ./ 6RUN npm ci 7COPY . . 8RUN npx vp build 9RUN npm prune --omit=dev 10ENV NODE_ENV=production 11EXPOSE 3000 12CMD ["node", "--max-old-space-size=768", "--experimental-strip-types", "node_modules/@hatk/hatk/dist/main.js", "hatk.config.ts"]