Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile.fedora26 → Dockerfile.fedora28
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM docker.io/fedora:26
FROM docker.io/fedora:28
MAINTAINER Dustin Spicuzza <dustin@virtualroadside.com>

RUN true \
Expand All @@ -8,7 +8,7 @@ RUN true \
pulseaudio \
gtk3 \
pygobject3 \
python-gobject \
python2-gobject \
dbus-python \
pycairo \
python2-mutagen \
Expand All @@ -26,4 +26,4 @@ ENV PULSE_SERVER /run/pulse/native
COPY src/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

CMD /bin/bash
CMD /bin/bash
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

cd `dirname $0`

TOBUILD=${1:-debian8 debian9 fedora26 fedora27 ubuntu16.04 ubuntu17.10}
TOBUILD=${1:-debian8 debian9 fedora27 fedora28 ubuntu16.04 ubuntu17.10}
BASE=docker.io/exaile/gst-python

for i in ${TOBUILD}; do
echo "Building $BASE:$i"
docker build --rm -t $BASE:$i -f Dockerfile.$i .
done
done