-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use deluge-team ppa (no need to install python3-setuptools) Use obsproject ppa No need to use mozillateam ppa for thunderbird (as deb is available in Ubuntu repos)
- Loading branch information
Showing
5 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# syntax=docker/dockerfile:1.4 | ||
FROM rubensa/ubuntu-tini-x11 | ||
FROM rubensa/ubuntu-tini-x11:18.04 | ||
LABEL author="Ruben Suarez <[email protected]>" | ||
|
||
# Tell docker that all future commands should be run as root | ||
|
@@ -34,10 +34,14 @@ apt-get -y install --no-install-recommends google-chrome-stable 2>&1 | |
EOT | ||
|
||
# Install deluge dependencies | ||
RUN apt-get -y install --no-install-recommends software-properties-common python3-setuptools 2>&1 | ||
RUN apt-get -y install --no-install-recommends software-properties-common 2>&1 | ||
# Add Deluge | ||
RUN <<EOT | ||
echo "# Installing deluge..." | ||
# | ||
# Add Deluge repo | ||
add-apt-repository -y ppa:deluge-team/stable | ||
apt-get update | ||
apt-get -y install --no-install-recommends deluge 2>&1 | ||
EOT | ||
|
||
|
@@ -134,11 +138,6 @@ EOT | |
# Add Thunderbird | ||
RUN <<EOT | ||
echo "# Installing thunderbird..." | ||
# | ||
# Add Thunderbird repo | ||
add-apt-repository -y ppa:mozillateam/ppa | ||
printf "Package: thunderbird*\nPin: release o=LP-PPA-mozillateam\nPin-Priority: 1001\n" >> /etc/apt/preferences.d/mozillateamppa | ||
apt-get update | ||
apt-get -y install --no-install-recommends thunderbird 2>&1 | ||
EOT | ||
|
||
|
@@ -176,6 +175,10 @@ RUN apt-get -y install --no-install-recommends software-properties-common v4l2lo | |
# Add OBS Studio | ||
RUN <<EOT | ||
echo "# Installing OBS Studio..." | ||
# | ||
# Add OBS Studio repo | ||
add-apt-repository ppa:obsproject/obs-studio | ||
apt-get update | ||
apt-get -y install --no-install-recommends obs-studio 2>&1 | ||
EOT | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters