Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.

Commit 4f2f2c4

Browse files
authored
Merge pull request #9 from genodeftest/update-ubuntu
Ubuntu: Update 19.04 to 19.10
2 parents 614c827 + 2a2251a commit 4f2f2c4

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

Dockerfile.ubuntu19.10

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd `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}
66
BASE=docker.io/exaile/gst-python
77

88
for i in ${TOBUILD}; do

0 commit comments

Comments
 (0)