This repository was archived by the owner on May 22, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ FROM docker.io/ubuntu:19.10
3+ MAINTAINER Dustin Spicuzza <dustin@virtualroadside.com>
4+
5+ RUN true \
6+ && export DEBIAN_FRONTEND=noninteractive \
7+ && apt-get update \
8+ && apt-get install -y --no-install-recommends \
9+ libpulse0 \
10+ pulseaudio \
11+ python-mutagen \
12+ python-gi \
13+ python-gi-cairo \
14+ python-dbus \
15+ gir1.2-gtk-3.0 \
16+ gir1.2-gstreamer-1.0 \
17+ gir1.2-gst-plugins-base-1.0 \
18+ gstreamer1.0-plugins-base \
19+ gstreamer1.0-plugins-good \
20+ gstreamer1.0-plugins-ugly \
21+ gstreamer1.0-pulseaudio \
22+ gstreamer1.0-plugins-bad \
23+ && rm -rf /var/lib/apt/lists/* \
24+ && echo enable-shm=no >> /etc/pulse/client.conf
25+
26+ # PulseAudio server
27+ ENV PULSE_SERVER /run/pulse/native
28+
29+ COPY src/entrypoint.sh /entrypoint.sh
30+ ENTRYPOINT ["/entrypoint.sh"]
31+
32+ CMD /bin/bash
Original file line number Diff line number Diff line change 22
33cd ` dirname $0 `
44
5- TOBUILD=${1:- debian9 debian10 fedora29 fedora30 ubuntu18.04 ubuntu19.04 }
5+ TOBUILD=${1:- debian9 debian10 fedora29 fedora30 ubuntu18.04 ubuntu19.10 }
66BASE=docker.io/exaile/gst-python
77
88for i in ${TOBUILD} ; do
You can’t perform that action at this time.
0 commit comments