Skip to content

Commit e250770

Browse files
authored
Merge pull request #690 from rzikm/opensuse-msquic
Add msquic to OpenSUSE
2 parents 1cd9564 + 1d2766c commit e250770

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/opensuse/15.2/helix/amd64/Dockerfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,21 @@ RUN zypper ref && \
2828
python3-devel \
2929
python3-pip \
3030
sudo \
31-
unzip && \
31+
unzip \
32+
wget && \
3233
\
3334
zypper clean -a
3435

3536
ENV LANG=en_US.utf8
3637

38+
# Install MsQuic from official GitHub releases
39+
RUN wget https://packages.microsoft.com/keys/microsoft.asc && \
40+
echo 2cfd20a306b2fa5e25522d78f2ef50a1f429d35fd30bd983e2ebffc2b80944fa microsoft.asc | sha256sum --check - && \
41+
rpm --import microsoft.asc && \
42+
rm microsoft.asc && \
43+
zypper install -y https://github.com/microsoft/msquic/releases/download/v2.1.1/libmsquic-2.1.1-1.x86_64.rpm && \
44+
zypper clean -a
45+
3746
RUN ln -sf /usr/bin/python3 /usr/bin/python && \
3847
python -m pip install --upgrade pip==20.2 && \
3948
python -m pip install virtualenv==16.6.0 && \

0 commit comments

Comments
 (0)