File size: 495 Bytes
d711d0a 7a8f7d3 d711d0a 7a8f7d3 d711d0a 7a8f7d3 d711d0a 7a8f7d3 d711d0a 7a8f7d3 d711d0a 7a8f7d3 d711d0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Use Node to build and run the app
FROM node:22-slim
WORKDIR /app
# Copy configuration files first to optimize building
COPY package*.json ./
# Install the app dependencies
RUN npm install
# Copy all the remaining project files
COPY . .
# Build the Lovable frontend
RUN npm run build
# Expose the precise port Hugging Face requires
EXPOSE 7860
# Run a preview server bound to Hugging Face's network configuration
CMD ["npm", "run", "preview", "--", "--host", "0.0.0.0", "--port", "7860"] |