Update Dockerfile

pull/1/head
RandomNinjaAtk 5 years ago committed by GitHub
parent e3c49299b9
commit fb19f31cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,11 +34,6 @@ RUN \
rm -rf \ rm -rf \
/var/lib/apt/lists/* \ /var/lib/apt/lists/* \
/var/tmp/* /var/tmp/*
chmod 777 /usr/local/bin/ffmpeg && \
chmod 777 /usr/local/bin/ffprobe
ENV VERSION="1.0.0"
RUN \ RUN \
# install dependancies # install dependancies
@ -51,7 +46,12 @@ RUN \
jq \ jq \
cron && \ cron && \
apt-get purge --auto-remove -y && \ apt-get purge --auto-remove -y && \
apt-get clean apt-get clean && \
chgrp users /usr/local/bin/ffmpeg && \
chgrp users /usr/local/bin/ffprobe && \
chmod g+x /usr/local/bin/ffmpeg && \
chmod g+x /usr/local/bin/ffprobe
# get python3 and git, and install python libraries # get python3 and git, and install python libraries
RUN \ RUN \

Loading…
Cancel
Save