Files
RasadDam_Frontend/dockerfile
2026-01-19 18:03:22 +03:30

19 lines
267 B
Plaintext

FROM 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"]