Add Dockerfile for deployment

This commit is contained in:
2026-03-30 21:35:20 +00:00
parent 0680d08fe8
commit 14aa2dec09
3 changed files with 21 additions and 2 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 3000
CMD ["npm", "run", "start"]