blob: 80b794373a39ca621e9884ca4431b0c6407ff449 (
plain)
1
2
3
4
5
6
7
|
FROM docker.helsinki.at/ubuntu: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/*
|