1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00
dockerfiles/ffmpeg/Dockerfile

14 lines
165 B
Docker
Raw Normal View History

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