Spaces:
Sleeping
Sleeping
File size: 270 Bytes
811ee7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.9
RUN pip install -U pip
WORKDIR /app
RUN pip freeze > requirements.txt
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt
EXPOSE 8501
COPY . /app
ENTRYPOINT ["python","-m","streamlit", "run", "app.py"] |