Spaces:
Runtime error
Runtime error
File size: 190 Bytes
a0d5c41 |
1 2 3 4 5 6 7 |
FROM python:3.9-slim
EXPOSE 8501
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "streamlit.py", "--server.port=8501", "--server.address=0.0.0.0"]
|