Skip to content

Commit

Permalink
Install libmsquic in CentOS Stream 9 image (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
wfurt authored Apr 17, 2024
2 parents eb8d47f + 2f6c5e0 commit cf37edc
Showing 1 changed file with 7 additions and 2 deletions.
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

0 comments on commit cf37edc

Please sign in to comment.