Spaces:
Sleeping
Sleeping
FROM python:3.9-slim | |
RUN apt-get update && apt-get install -y git | |
WORKDIR /app | |
RUN git clone https://github.com/leoncool23/testStreamlit.git . | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 7860 | |
CMD ["streamlit", "run", "app.py", "--server.port=7860"] | |