Last active
August 31, 2022 05:47
-
-
Save percybolmer/66baa3773b007fbdf19bf1cb2579cf1c to your computer and use it in GitHub Desktop.
dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu | |
RUN apt-get -y update &&\ | |
apt-get -y install ffmpeg &&\ | |
mkdir /videos | |
ADD https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4 /videos | |
ENTRYPOINT ["ffmpeg"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment