Files
RasadDam_Frontend/dockerfile
2026-01-25 09:25:29 +03:30

19 lines
300 B
Plaintext

FROM registry.hamdocker.ir/seniorkian/node:18-alpine
WORKDIR /app
COPY package*.json ./
run npm config set registry https://mirror-npm.runflare.com
RUN npm install --force
COPY . .
RUN npm run build
RUN ls -la
EXPOSE 3000
CMD ["npx", "vite", "preview", "--host", "0.0.0.0", "--port", "3000"]