1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:15 +02:00
dockerfiles/ffmpeg/Dockerfile

14 lines
165 B
Docker
Raw Normal View History

2016-07-03 16:01:27 +02:00
#
# Dockerfile for ffmpeg
#
2021-10-18 06:06:54 +02:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-07-03 16:01:27 +02:00
RUN apk add --no-cache ffmpeg
WORKDIR /data
ENTRYPOINT ["ffmpeg"]
CMD ["--help"]