Spaces:
Runtime error
Runtime error
FROM python:3.10-slim | |
RUN apt-get update && apt-get install -y build-essential curl git && rm -rf /var/lib/apt/lists/* | |
WORKDIR /app | |
# Copy applicatio | |
COPY . /app | |
# Install dependencies | |
RUN pip install --upgrade pip && pip install --user -r requirements.txt | |
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] | |