LFM2-WebGPU-MCP / Dockerfile
drdata's picture
Create Dockerfile
e8b10ed verified
raw
history blame contribute delete
183 Bytes
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"]