automatic-ripping-machine / arm-dependencies

A repo to codify the requirements used by Automatic Ripping Machine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker deploy failure - libdvdcss not reachable

1337-server opened this issue · comments

Seems that the package libdvdcss cant be updated as the host is down (dpkg-reconfigure libdvd-pkg triggers built to break)

Adding this to the docker image to pull and compile the latest version fixes the issue

RUN git clone https://code.videolan.org/videolan/libdvdcss && \
    cd libdvdcss && aclocal && autoreconf -i && \
    ./configure && \
    make -j32 && \
    make install && \
    cd .. && rm -R libdvdcss

Issue now resolved as host is back up