Files
ulfbot/Dockerfile
2026-03-23 20:11:18 +01:00

13 lines
182 B
Docker

FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY dist ./dist
# Persistent data directory
VOLUME ["/app/data"]
CMD ["node", "dist/index.js"]