Spaces:
Runtime error
Runtime error
File size: 700 Bytes
206264d |
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 |
# Use official Python image
FROM python:3.9-slim
# Set working directory inside the container
WORKDIR /app
# Copy app files
COPY . /app
# Install system dependencies (optional, for matplotlib/seaborn)
RUN apt-get update && apt-get install -y \
build-essential \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Set Streamlit config to avoid permission errors
ENV STREAMLIT_HOME=/app/.streamlit
# Expose Streamlit default port
EXPOSE 8501
# Run the app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|