1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/ffmpeg/Dockerfile

14 lines
165 B
Docker
Raw Normal View History

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