-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jackhe/1es-azure-pools
- Loading branch information
Showing
58 changed files
with
777 additions
and
242 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
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
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 |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# Stage 1: Base image | ||
FROM ubuntu:24.04@sha256:e3f92abc0967a6c19d0dfa2d55838833e947b9d74edbcb0113e48535ad4be12a AS base | ||
|
||
LABEL org.opencontainers.image.source https://github.com/microsoft/msquic | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
apt-transport-https \ | ||
ca-certificates \ | ||
gnupg \ | ||
software-properties-common \ | ||
wget && \ | ||
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null && \ | ||
apt-add-repository 'deb https://apt.kitware.com/ubuntu/ jammy main' && \ | ||
apt-add-repository ppa:lttng/stable-2.13 && \ | ||
apt-get update && \ | ||
apt-get install -y tzdata \ | ||
build-essential \ | ||
cmake \ | ||
clang \ | ||
git \ | ||
make \ | ||
sudo \ | ||
lttng-tools \ | ||
perl \ | ||
nasm \ | ||
ruby \ | ||
ruby-dev \ | ||
rpm \ | ||
cppcheck \ | ||
clang-tidy \ | ||
gdb \ | ||
liblttng-ust-dev \ | ||
libssl-dev \ | ||
libnuma-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN gem install fpm | ||
RUN wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libicu72_72.1-3ubuntu3_amd64.deb \ | ||
&& dpkg -i ./libicu72_72.1-3ubuntu3_amd64.deb \ | ||
&& rm ./libicu72_72.1-3ubuntu3_amd64.deb \ | ||
&& wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \ | ||
sudo dpkg -i packages-microsoft-prod.deb && \ | ||
sudo add-apt-repository universe && \ | ||
sudo apt-get update -y && \ | ||
sudo apt-get install -y \ | ||
# INSTALL POWERSHELl | ||
powershell \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN git config --global safe.directory '*' | ||
|
||
# Stage 2: dependencies for cross-build. | ||
# ubuntu 24.04 can install both xdp and arm dependencies | ||
FROM base AS cross-build | ||
|
||
RUN apt-get update -y && apt-get install --no-install-recommends -y \ | ||
libnl-3-dev \ | ||
libnl-genl-3-dev \ | ||
libnl-route-3-dev \ | ||
zlib1g-dev \ | ||
zlib1g \ | ||
pkg-config \ | ||
m4 \ | ||
libpcap-dev \ | ||
libelf-dev \ | ||
libc6-dev-i386 \ | ||
libxdp-dev \ | ||
libbpf-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
gcc-arm-linux-gnueabihf \ | ||
g++-arm-linux-gnueabihf \ | ||
binutils-arm-linux-gnueabihf \ | ||
gcc-aarch64-linux-gnu \ | ||
g++-aarch64-linux-gnu \ | ||
binutils-aarch64-linux-gnu \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN dpkg --add-architecture arm64 && \ | ||
dpkg --add-architecture armhf | ||
|
||
RUN mv /etc/apt/sources.list /etc/apt/sources.list.int && \ | ||
cat /etc/apt/sources.list.int | grep "^deb" | sed 's/deb /deb [arch=amd64] /g' > /etc/apt/sources.list && \ | ||
rm /etc/apt/sources.list.int && \ | ||
rm /etc/apt/sources.list.d/ubuntu.sources | ||
|
||
RUN echo $' \n\ | ||
deb [arch=armhf,arm64] http://ports.ubuntu.com/ noble main restricted universe multiverse \n\ | ||
deb [arch=armhf,arm64] http://ports.ubuntu.com/ noble-updates main restricted universe multiverse \n\ | ||
deb [arch=armhf,arm64] http://ports.ubuntu.com/ noble-backports main restricted universe multiverse \n\ | ||
' > /etc/apt/sources.list.d/arm-cross-compile-sources.list | ||
|
||
RUN apt-get update \ | ||
&& apt-get --no-install-recommends install -y \ | ||
liblttng-ust-dev:arm64 \ | ||
liblttng-ust-dev:armhf \ | ||
libssl-dev:arm64 \ | ||
libssl-dev:armhf \ | ||
libnuma-dev:arm64 \ | ||
libnuma-dev:armhf \ | ||
&& rm -rf /var/lib/apt/lists/* |
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
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
Oops, something went wrong.