Files
RasadDam_Frontend/dockerfile
2026-01-19 13:08:58 +03:30

16 lines
197 B
Plaintext

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