1
0
Fork 0
mirror of synced 2024-06-02 11:04:31 +12:00
waifu2x/Dockerfile

26 lines
597 B
Docker
Raw Normal View History

FROM kaixhin/cuda-torch:7.5
2016-09-02 03:34:00 +12:00
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
2016-09-02 03:34:00 +12:00
# suppress message `tput: No value for $TERM and no -T specified`
ENV TERM xterm
2016-09-02 03:34:00 +12:00
COPY . /root/waifu2x
WORKDIR /root/waifu2x