add Dockerfile

This commit is contained in:
2026-02-28 01:40:14 +00:00
parent 14b14c8676
commit 373004616f

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]