Spaces:
Running
Running
File size: 328 Bytes
9e3c899 3372d59 9e3c899 3372d59 9e3c899 3372d59 9e3c899 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ ./src/
EXPOSE 8501
# No curl installed, so drop the HEALTHCHECK or rewrite it
# HEALTHCHECK NONE
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"] |