Skip to content

Instantly share code, notes, and snippets.

@iann0036
Created May 5, 2018 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iann0036/391b515b2360046ed18be9e544822b30 to your computer and use it in GitHub Desktop.
Save iann0036/391b515b2360046ed18be9e544822b30 to your computer and use it in GitHub Desktop.
RCNN Dockerfile
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