1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-03 00:33:55 +00:00
dockerfiles/ffmpeg/Dockerfile

14 lines
162 B
Docker
Raw Normal View History

2016-07-03 14:01:27 +00:00
#
# Dockerfile for ffmpeg
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add --no-cache ffmpeg
WORKDIR /data
ENTRYPOINT ["ffmpeg"]
CMD ["--help"]