Files
RasadDam_Frontend/dockerfile

19 lines
300 B
Plaintext
Raw Normal View History

2026-01-25 09:25:29 +03:30
FROM registry.hamdocker.ir/seniorkian/node:18-alpine
2026-01-19 13:08:58 +03:30
WORKDIR /app
COPY package*.json ./
2026-01-19 18:01:59 +03:30
run npm config set registry https://mirror-npm.runflare.com
2026-01-19 18:03:22 +03:30
RUN npm install --force
2026-01-19 13:08:58 +03:30
COPY . .
RUN npm run build
RUN ls -la
EXPOSE 3000
CMD ["npx", "vite", "preview", "--host", "0.0.0.0", "--port", "3000"]