Compare commits

..

1 Commits

Author SHA1 Message Date
6d15f1026f Update Dockerfile 2026-01-27 09:04:02 +00:00

View File

@@ -1,14 +1,10 @@
FROM node:18-alpine FROM registry.hamdocker.ir/seniorkian/node18-inspection-back:1.0.0
WORKDIR /app WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . . COPY . .
ENV PORT=3000
EXPOSE 3000 EXPOSE 3000
CMD ["node", "index.js"] CMD ["npm", "start"]