Update Dockerfile
Browse files- 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 |
|