Spaces:
Runtime error
Runtime error
File size: 718 Bytes
2614f3b f4a6180 2614f3b 612c689 |
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 |
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Create necessary directories
RUN mkdir -p static data
# Copy application files
COPY app.py .
COPY translations/ translations/
COPY i18n.py .
COPY websocket_handler.py .
COPY static/ static/
COPY run.py .
COPY templates/ templates/
# Create a non-root user
RUN useradd -m -u 1000 user && chown -R user:user /app
USER user
# Expose port for Hugging Face Spaces
EXPOSE 7860
# Run the application
CMD ["python", "run.py"]
|