Atsushi Takayama пре 8 година
родитељ
комит
281b95a014
1 измењених фајлова са 24 додато и 0 уклоњено
  1. 24 0
      Dockerfile

+ 24 - 0
Dockerfile

@@ -0,0 +1,24 @@
+FROM kaixhin/cuda-torch
+
+RUN apt-get update && apt-get install -y --no-install-recommends --force-yes \
+  libsnappy-dev \
+  graphicsmagick \
+  libgraphicsmagick1-dev \
+  libssl-dev \
+  ca-certificates \
+  git && \
+  rm -rf /var/lib/apt/lists/*
+
+# https://github.com/nagadomi/waifu2x
+RUN \
+  luarocks install graphicsmagick && \
+  luarocks install lua-csnappy && \
+  luarocks install md5 && \
+  luarocks install uuid && \
+  luarocks install csvigo && \
+  PREFIX=$HOME/torch/install luarocks install turbo && \
+  luarocks install cudnn
+
+COPY . /root/waifu2x
+
+WORKDIR /root/waifu2x