Files
Rasadyar_Inspection_System/dockerfile
2026-01-26 10:14:10 +03:30

16 lines
209 B
Plaintext

FROM ghcr.io/eic/node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
RUN ls -la
EXPOSE 3000
CMD ["npx", "vite", "preview", "--host", "0.0.0.0", "--port", "3000"]