blob: 1e8ab6f5d697675baab3093029baca847881f9c1 (
plain)
1
2
3
4
5
6
7
|
FROM docker.helsinki.at/debian:bullseye
MAINTAINER Christian Pointner <equinox@helsinki.at>
RUN set -x \
&& apt-get update -q \
&& apt-get install -y -q ffmpeg \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|