1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/ffmpeg/Dockerfile

14 lines
161 B
Docker
Raw Normal View History

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