randydev commited on
Commit
1bd37e9
·
verified ·
1 Parent(s): ce7e8cd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -36,6 +36,12 @@ RUN chmod 777 .
36
  RUN chown -R 1000:0 /usr
37
  RUN chmod 777 /usr
38
 
 
 
 
 
 
 
39
  # Expose the required port
40
  EXPOSE 7860
41
 
 
36
  RUN chown -R 1000:0 /usr
37
  RUN chmod 777 /usr
38
 
39
+ RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
40
+ RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
41
+ RUN md5sum -c ffmpeg-git-amd64-static.tar.xz.md5
42
+ RUN tar xvf ffmpeg-git-amd64-static.tar.xz
43
+ RUN mv ffmpeg-git*/ffmpeg ffmpeg-git*/ffprobe /usr/local/bin/
44
+
45
  # Expose the required port
46
  EXPOSE 7860
47