Add Dockerfile

This commit is contained in:
2026-01-31 14:41:56 +00:00
parent daa8a0eb11
commit e4494d7c88

12
Dockerfile Normal file
View File

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