Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/nuget/InsaneGenius.Utilities-3.1.49
Browse files Browse the repository at this point in the history
  • Loading branch information
ptr727 committed Jun 3, 2024
2 parents 800d33d + eb9fb08 commit 2b3d431
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Docker/Debian.Stable.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ ARG BUILD_CONFIGURATION="Debug" \
BUILD_INFORMATION_VERSION="1.0.0.0" \
BUILD_PACKAGE_VERSION="1.0.0.0"

# Prevent EULA and confirmation prompts in installers
ENV DEBIAN_FRONTEND=noninteractive

# Upgrade
RUN apt-get update \
&& apt-get upgrade -y
Expand Down
3 changes: 3 additions & 0 deletions Docker/Debian.Testing.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ ARG BUILD_CONFIGURATION="Debug" \
BUILD_INFORMATION_VERSION="1.0.0.0" \
BUILD_PACKAGE_VERSION="1.0.0.0"

# Prevent EULA and confirmation prompts in installers
ENV DEBIAN_FRONTEND=noninteractive

# Upgrade
RUN apt-get update \
&& apt-get upgrade -y
Expand Down
3 changes: 3 additions & 0 deletions Docker/Ubuntu.Devel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ ARG BUILD_CONFIGURATION="Debug" \
BUILD_INFORMATION_VERSION="1.0.0.0" \
BUILD_PACKAGE_VERSION="1.0.0.0"

# Prevent EULA and confirmation prompts in installers
ENV DEBIAN_FRONTEND=noninteractive

# Upgrade
RUN apt-get update \
&& apt-get upgrade -y
Expand Down
3 changes: 3 additions & 0 deletions Docker/Ubuntu.Rolling.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ ARG BUILD_CONFIGURATION="Debug" \
BUILD_INFORMATION_VERSION="1.0.0.0" \
BUILD_PACKAGE_VERSION="1.0.0.0"

# Prevent EULA and confirmation prompts in installers
ENV DEBIAN_FRONTEND=noninteractive

# Upgrade
RUN apt-get update \
&& apt-get upgrade -y
Expand Down
8 changes: 7 additions & 1 deletion Docker/Ubuntu.Savoury.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ ARG BUILD_CONFIGURATION="Debug" \
BUILD_INFORMATION_VERSION="1.0.0.0" \
BUILD_PACKAGE_VERSION="1.0.0.0"

# Prevent EULA and confirmation prompts in installers
ENV DEBIAN_FRONTEND=noninteractive

# Upgrade
RUN apt-get update \
&& apt-get upgrade -y
Expand Down Expand Up @@ -126,7 +129,7 @@ RUN wget -O /usr/share/keyrings/gpg-pub-moritzbunkus.gpg https://mkvtoolnix.down
# Install FfMpeg and HandBrake from Rob Savoury's private PPA
# https://launchpad.net/~savoury1
# https://launchpad.net/~/+archivesubscriptions
# https://launchpad.net/~savoury1/+archive/ubuntu/ffmpeg6
# https://launchpad.net/~savoury1/+archive/ubuntu/ffmpeg7
# https://launchpad.net/~savoury1/+archive/ubuntu/handbrake

# Use docker secrets and link the secret file to the filesystem auth.conf
Expand All @@ -143,7 +146,10 @@ RUN --mount=type=secret,id=SAVOURY_PPA_AUTH ln -s /run/secrets/SAVOURY_PPA_AUTH
&& sh -c 'echo "deb https://private-ppa.launchpadcontent.net/savoury1/ffmpeg/ubuntu $(lsb_release -sc) main" >> /etc/apt/sources.list.d/savoury.list' \
&& add-apt-repository -y ppa:savoury1/graphics \
&& add-apt-repository -y ppa:savoury1/multimedia \
# FfMpeg 6 and 7 requires FfMpeg 4
&& add-apt-repository -y ppa:savoury1/ffmpeg4 \
# HandBrake requires FfMpeg 6
&& add-apt-repository -y ppa:savoury1/ffmpeg6 \
&& add-apt-repository -y ppa:savoury1/ffmpeg7 \
&& add-apt-repository -y ppa:savoury1/handbrake \
&& apt-get update \
Expand Down

0 comments on commit 2b3d431

Please sign in to comment.