Spaces:
Sleeping
Sleeping
File size: 541 Bytes
86ba705 544f497 b26ea7d 544f497 b26ea7d 544f497 86ba705 a996148 b26ea7d a032fab | 1 2 3 4 5 6 7 8 9 10 | FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends gcc python3-dev && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -U pip && pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY best_xgboost_model.joblib .
EXPOSE 7860
ENV STREAMLIT_SERVER_PORT=7860 STREAMLIT_SERVER_ADDRESS=0.0.0.0 STREAMLIT_SERVER_HEADLESS=true STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] |