Spaces:
Sleeping
Sleeping
File size: 183 Bytes
e8b10ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM node:18-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860
CMD ["npx", "vite", "preview", "--host", "0.0.0.0", "--port", "7860"]
|