Spaces:
Running
Running
File size: 193 Bytes
3a8e15d |
1 2 3 4 5 6 7 8 |
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"] |