Spaces:
Runtime error
Runtime error
File size: 244 Bytes
b30324c |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.8
RUN mkdir /app
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=4000", "--server.address=0.0.0.0", "--client.showErrorDetails=false"]
|