Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install libmsquic in CentOS Stream 9 image #1007

Merged
merged 3 commits into from
Apr 17, 2024
Merged
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
9 changes: 7 additions & 2 deletions src/centos/stream9/helix/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM quay.io/centos/centos:stream9

# Install dependencies
RUN dnf install --setopt tsflags=nodocs --refresh -y \
RUN curl -LO https://packages.microsoft.com/keys/microsoft.asc && \
echo 2cfd20a306b2fa5e25522d78f2ef50a1f429d35fd30bd983e2ebffc2b80944fa microsoft.asc| sha256sum --check - && \
rpm --import microsoft.asc && \
rm microsoft.asc && \
dnf install --setopt tsflags=nodocs --refresh -y \
dnf-plugins-core \
&& \
dnf config-manager --set-enabled crb \
dnf config-manager --add-repo https://packages.microsoft.com/rhel/9/prod \
&& \
dnf install --setopt tsflags=nodocs -y --allowerasing \
autoconf \
Expand All @@ -17,6 +21,7 @@ RUN dnf install --setopt tsflags=nodocs --refresh -y \
git-core \
iputils \
libicu \
libmsquic \
libtool \
llvm \
make \
Expand Down