2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-04 03:54:55 +01:00

add ffmpeg

This commit is contained in:
kev
2016-07-03 22:01:27 +08:00
parent 6d3d2f7843
commit a65f9abcd3
4 changed files with 36 additions and 7 deletions

13
ffmpeg/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
#
# Dockerfile for ffmpeg
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add --no-cache ffmpeg
WORKDIR /data
ENTRYPOINT ["ffmpeg"]
CMD ["--help"]