5 lines
116 B
Docker
5 lines
116 B
Docker
FROM debian:stretch-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install ffmpeg && \
|
|
rm -rf /var/lib/apt/lists/* |