Spaces:
Running
Running
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"] |