diff --git a/Dockerfile b/Dockerfile index 492e113..c2dffc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,9 @@ RUN apt-get update \ clinfo \ ffmpeg \ git \ + libplacebo-dev \ libtool \ + meson \ mkvtoolnix \ pocl-opencl-icd \ python3-pip \ @@ -71,6 +73,16 @@ RUN cd /tmp/ \ && cd .. \ && rm -rf vapoursynth-descale +RUN cd /tmp \ + && git clone --depth=1 --recursive https://github.com/Lypheo/vs-placebo \ + && cd vs-placebo \ + && meson build \ + && cd build \ + && ninja \ + && cp libvs_placebo.so /usr/lib/x86_64-linux-gnu/vapoursynth/ \ + && cd /tmp/ \ + && rm -rf vs-placebo + RUN pip3 --no-cache-dir install \ matplotlib \ tqdm \