blob: 795084b99657ae3ec032ef937431fa86f205fbe6 (
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 gstreamer1.0-tools gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-alsa \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|