Spaces:
Sleeping
Sleeping
File size: 963 Bytes
31828e1 400b12a 31828e1 baefe90 31828e1 baefe90 31828e1 baefe90 31828e1 90beeb3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# Use Node.js LTS as base image
FROM node:20-slim
# Set up a new user named "user" with user ID 1000
# Check if user already exists, if not create it
RUN id -u 1000 &>/dev/null || useradd -m -u 1000 user
# Switch to user ID 1000
USER 1000
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
# Copy demo package files with correct ownership (use numeric UID)
COPY --chown=1000:1000 demo/package*.json ./
# Install dependencies
RUN npm ci
# Copy the demo application with correct ownership (use numeric UID)
COPY --chown=1000:1000 demo/ .
# Build the application
RUN npm run build
# Expose port 7860 (Hugging Face Spaces default)
EXPOSE 7860
# Run the preview server on port 7860
# Use sh -c to set VITE environment variable to allow all hosts
CMD ["sh", "-c", "VITE_ALLOWED_HOSTS='*' npm run preview -- --host 0.0.0.0 --port 7860"]
|