Skip to content

Commit

Permalink
Install microsoft signing key
Browse files Browse the repository at this point in the history
  • Loading branch information
rzikm committed Sep 12, 2022
1 parent 154a3d5 commit 548b3d2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/opensuse/15.2/helix/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@ RUN zypper ref && \

ENV LANG=en_US.utf8

RUN wget https://github.com/microsoft/msquic/releases/download/v2.1.1/libmsquic-2.1.1-1.x86_64.rpm && \
rpm -i libmsquic-2.1.1-1.x86_64.rpm && \
rm libmsquic-2.1.1-1.x86_64.rpm
# Install MsQuic from official GitHub releases
RUN wget https://packages.microsoft.com/keys/microsoft.asc && \
echo 2cfd20a306b2fa5e25522d78f2ef50a1f429d35fd30bd983e2ebffc2b80944fa microsoft.asc | sha256sum --check - && \
rpm --import microsoft.asc && \
rm microsoft.asc && \
zypper install -y https://github.com/microsoft/msquic/releases/download/v2.1.1/libmsquic-2.1.1-1.x86_64.rpm && \
zypper clean -a

RUN ln -sf /usr/bin/python3 /usr/bin/python && \
python -m pip install --upgrade pip==20.2 && \
Expand Down

0 comments on commit 548b3d2

Please sign in to comment.