Compare commits

...

2 Commits

Author SHA1 Message Date
c0e7aa507d update: dockerfile 2026-01-27 12:35:38 +03:30
a6ca3fe519 update: dockerfile 2026-01-27 12:09:55 +03:30

View File

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