final commit

This commit is contained in:
2026-07-19 20:05:28 +05:30
parent 1a1272649f
commit adf653d0ee
5 changed files with 63 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:22-alpine
WORKDIR /app
RUN npm install -g npm@latest
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]