# # Dockerfile for ffmpeg # FROM alpine MAINTAINER kev RUN apk add --no-cache ffmpeg WORKDIR /data ENTRYPOINT ["ffmpeg"] CMD ["--help"]