FROM tensorflow/tensorflow:1.14.0-gpu-py3 RUN pip install jupyter WORKDIR /data COPY requirements.txt ./ RUN apt-get install -y libglib2.0-0 && \ apt-get install -y libgl1-mesa-glx && \ apt-get install -y ffmpeg && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt EXPOSE 7860 COPY . . CMD ["streamlit", "run", "app.py", "--server.port", "7860"]