Spaces:
Running
Running
Add this Dockerfile will make it easy to anyone to deploy this application as a container
3a8e15d
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"] |