File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
src/opensuse/15.2/helix/amd64 Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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
3536ENV 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+
3746RUN 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 && \
You can’t perform that action at this time.
0 commit comments