1
0
Fork 0
mirror of synced 2024-05-19 04:12:19 +12:00
waifu2x/Dockerfile
nagadomi c3b01ecc02 Docker: Stop installing cudnn
It is already installed on kaixhin/cuda-torch and latest cudnn does not work with old cunn.
2017-02-07 15:46:26 +09:00

26 lines
593 B
Docker

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/*
RUN \
luarocks install graphicsmagick && \
luarocks install lua-csnappy && \
luarocks install md5 && \
luarocks install uuid && \
luarocks install csvigo && \
PREFIX=$HOME/torch/install luarocks install turbo
# suppress message `tput: No value for $TERM and no -T specified`
ENV TERM xterm
COPY . /root/waifu2x
WORKDIR /root/waifu2x