Created
December 5, 2015 23:43
-
-
Save jacopofar/ef205b3d7dbd554a4b0a to your computer and use it in GitHub Desktop.
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:wily | |
#FROM phusion/baseimage:latest | |
#get the repo indexes | |
RUN apt-get update && apt-get -y upgrade | |
# system dependencies needed to install the libraries from pip | |
RUN apt-get install -y python-setuptools gcc python-dev libhdf5-dev libjpeg-dev zlibc zlib1g-dev | |
RUN easy_install pip | |
RUN pip install numpy | |
RUN pip install scipy | |
RUN pip install pillow | |
RUN pip install scikit-image | |
RUN pip install chainer | |
RUN apt-get install -y git | |
RUN git clone https://github.com/rezoo/illustration2vec.git | |
RUN cd illustration2vec && ./get_models.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment