From 8bb52e2a2cc565f932ca7fb76abd9a64d0c78018 Mon Sep 17 00:00:00 2001 From: Andy Gocke Date: Tue, 10 Sep 2024 11:20:58 -0700 Subject: [PATCH] Add brotli to sourcebuild container (#1197) --- src/almalinux/8/source-build/amd64/Dockerfile | 1 + src/alpine/3.19/amd64/Dockerfile | 1 + src/alpine/3.20/amd64/Dockerfile | 1 + src/centos/stream9/amd64/Dockerfile | 1 + src/fedora/40/amd64/Dockerfile | 3 ++- src/ubuntu/24.04/Dockerfile | 1 + 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/almalinux/8/source-build/amd64/Dockerfile b/src/almalinux/8/source-build/amd64/Dockerfile index ae9ad27b8..491ddf58f 100644 --- a/src/almalinux/8/source-build/amd64/Dockerfile +++ b/src/almalinux/8/source-build/amd64/Dockerfile @@ -10,6 +10,7 @@ RUN dnf install -y \ "perl(Time::HiRes)" \ autoconf \ automake \ + brotli-devel \ cmake \ elfutils \ file \ diff --git a/src/alpine/3.19/amd64/Dockerfile b/src/alpine/3.19/amd64/Dockerfile index 2c5f7c3d8..ad0f05338 100644 --- a/src/alpine/3.19/amd64/Dockerfile +++ b/src/alpine/3.19/amd64/Dockerfile @@ -6,6 +6,7 @@ RUN apk add --upgrade --no-cache \ automake \ bash \ build-base \ + brotli-dev \ ca-certificates \ clang \ clang-dev \ diff --git a/src/alpine/3.20/amd64/Dockerfile b/src/alpine/3.20/amd64/Dockerfile index c936128b5..50a455f98 100644 --- a/src/alpine/3.20/amd64/Dockerfile +++ b/src/alpine/3.20/amd64/Dockerfile @@ -6,6 +6,7 @@ RUN apk add --upgrade --no-cache \ automake \ bash \ build-base \ + brotli-dev \ ca-certificates \ clang \ clang-dev \ diff --git a/src/centos/stream9/amd64/Dockerfile b/src/centos/stream9/amd64/Dockerfile index 5eaa881d3..f98c13760 100644 --- a/src/centos/stream9/amd64/Dockerfile +++ b/src/centos/stream9/amd64/Dockerfile @@ -12,6 +12,7 @@ RUN dnf install --setopt tsflags=nodocs --refresh -y \ "perl(Time::HiRes)" \ autoconf \ automake \ + brotli-devel \ clang \ cmake \ curl-devel \ diff --git a/src/fedora/40/amd64/Dockerfile b/src/fedora/40/amd64/Dockerfile index 6f59b642e..ac2d982fe 100644 --- a/src/fedora/40/amd64/Dockerfile +++ b/src/fedora/40/amd64/Dockerfile @@ -46,6 +46,7 @@ RUN LATEST_TAG=$(curl -L https://api.github.com/repos/powershell/powershell/rele RUN dnf --setopt=install_weak_deps=False install -y \ autoconf \ automake \ + brotli-devel \ glibc-locale-source \ iputils \ jq \ @@ -75,7 +76,7 @@ RUN dnf --setopt=install_weak_deps=False install -y \ && dnf clean all # Dependencies for Aspnetcore -RUN cd ~ && \ +RUN cd ~ && \ curl -sL https://rpm.nodesource.com/setup_20.x RUN dnf install -y nodejs && dnf clean all ENV NO_UPDATE_NOTIFIER=true diff --git a/src/ubuntu/24.04/Dockerfile b/src/ubuntu/24.04/Dockerfile index 9b28c1b8f..767b87ed0 100644 --- a/src/ubuntu/24.04/Dockerfile +++ b/src/ubuntu/24.04/Dockerfile @@ -41,6 +41,7 @@ RUN apt-get update \ curl \ gettext \ jq \ + libbrotli-dev \ libgdiplus \ libicu-dev \ libkrb5-dev \