Spaces:
Running
Running
FROM python:3.10-slim | |
ENV DEBIAN_FRONTEND=noninteractive | |
WORKDIR /app | |
COPY . . | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN pip install --no-cache-dir -r requirements.txt | |
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] | |