master
Simon Bruder 2020-01-06 19:20:52 +00:00
commit f48abfe774
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 28 additions and 0 deletions

28
Dockerfile Normal file
View File

@ -0,0 +1,28 @@
FROM debian:testing
RUN echo 'deb http://ftp-stud.hs-esslingen.de/pub/Mirrors/debian-multimedia/ testing main' > /etc/apt/sources.list.d/deb-multimedia.list \
&& apt-get update -oAcquire::AllowInsecureRepositories=true \
&& apt-get -y --allow-unauthenticated install deb-multimedia-keyring \
&& apt-get update \
&& apt-get -y install \
ffmpeg \
python3-pip \
vapoursynth \
vapoursynth-* \
wget \
x264 \
x265 \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install yuuno 'prompt-toolkit<2.1.0,>=2.0.0' \
&& yuuno jupyter install
RUN wget -P /usr/local/lib/python3.7/dist-packages/ \
https://github.com/HomeOfVapourSynthEvolution/havsfunc/raw/master/havsfunc.py \
https://github.com/HomeOfVapourSynthEvolution/mvsfunc/raw/master/mvsfunc.py \
https://github.com/dubhater/vapoursynth-adjust/raw/master/adjust.py
RUN chmod 755 /usr/local/lib/python3.7/dist-packages/*
RUN adduser --disabled-password --gecos '' vapoursynth
USER vapoursynth