| 1234567891011121314151617181920212223242526 | FROM kaixhin/cuda-torchRUN 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 && \  luarocks install cudnn# suppress message `tput: No value for $TERM and no -T specified`ENV TERM xtermCOPY . /root/waifu2xWORKDIR /root/waifu2x
 |