This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
RUN apt-get update -y && apt-get install -y --no-install-recommends \ | |
python3-pip python3-dev cmake zlib1g-dev python3-tk python-opencv build-essential | |
RUN pip3 install --upgrade pip | |
RUN pip3 install virtualenv | |
RUN pip3 install setuptools | |
RUN mkdir -p /coach |