Spaces:
Running
Running
FROM python:3 | |
EXPOSE 8501 | |
WORKDIR /mlproject | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
RUN pip install --upgrade pip | |
COPY . . | |
CMD ["streamlit", "run", "app.py"] |