Created
May 5, 2018 12:33
-
-
Save iann0036/391b515b2360046ed18be9e544822b30 to your computer and use it in GitHub Desktop.
RCNN Dockerfile
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:latest | |
RUN apt-get update \ | |
&& apt-get install -y python3-pip python3-dev \ | |
&& cd /usr/local/bin \ | |
&& ln -s /usr/bin/python3 python \ | |
&& pip3 install --upgrade pip | |
RUN pip3 install numpy | |
RUN pip3 install scipy | |
RUN pip3 install matplotlib | |
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install tzdata | |
RUN dpkg-reconfigure --frontend noninteractive tzdata | |
RUN apt-get -y install python3-tk | |
RUN pip3 install Cython | |
RUN pip3 install pycocotools | |
RUN pip3 install tensorflow | |
RUN pip3 install scikit-image | |
RUN pip3 install keras | |
RUN pip3 install IPython | |
RUN pip3 install imageio | |
ENTRYPOINT ["python3"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment