This repository has been archived on 2019-08-25. You can view files and clone it, but cannot push or open issues/pull-requests.
ffmpeg/cheap/Dockerfile

12 lines
403 B
Docker
Raw Normal View History

2019-08-25 12:35:39 +02:00
FROM alpine
RUN apk add --no-cache tini
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz \
2019-08-25 13:08:30 +02:00
&& tar xvf ffmpeg-git-amd64-static.tar.xz \
2019-08-25 12:35:39 +02:00
&& mv ffmpeg-git-*-amd64-static/ffmpeg /usr/local/bin/ \
2019-08-25 13:08:30 +02:00
&& mv ffmpeg-git-*-amd64-static/model /usr/local/share/ \
2019-08-25 12:35:39 +02:00
&& rm -rf ffmpeg-git-*-amd64-static ffmpeg-git-amd64-static.tar.xz
ENTRYPOINT ["tini", "--", "ffmpeg"]