Spaces:
Paused
Paused
File size: 240 Bytes
1b9f020 9d0c72d 1b9f020 040f332 1b9f020 9d0c72d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.9
WORKDIR /app
RUN pip install streamlit
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
WORKDIR /app/
ENV PATH="/root/.local/bin:${PATH}"
EXPOSE 8501
EXPOSE 7000
CMD python server.py |