Add Dockerfile

This commit is contained in:
2026-04-19 19:12:26 +00:00
parent a48abd05c7
commit de6732b60b

12
Dockerfile Normal file
View File

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