Spaces:
Sleeping
Sleeping
FROM tensorflow/tensorflow:1.14.0-gpu-py3 | |
RUN pip install jupyter | |
WORKDIR /data | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 7860 | |
COPY . . | |
CMD ["streamlit", "run", "app.py", "--server.port", "7860"] | |