Spaces:
Sleeping
Sleeping
File size: 910 Bytes
40f2bca dce0d90 40f2bca | 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 37 38 39 40 41 42 43 | FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy all application files
COPY . .
# Create a non-root user (Hugging Face requirement)
RUN useradd -m -u 1000 user
USER user
# Set environment variables for Hugging Face
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set working directory to user home
WORKDIR $HOME/app
# Copy files to user directory
COPY --chown=user . $HOME/app
# Expose port 7860 (Hugging Face Spaces default)
EXPOSE 7860
# Make start script executable
RUN chmod +x start.sh
# Run both Flask and Streamlit with XSRF protection disabled
CMD ["bash", "start.sh"]
|