You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libraries/System.Net.Http/tests/StressTests/HttpStress/Dockerfile
+8-11Lines changed: 8 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,14 @@ FROM $SDK_BASE_IMAGE
4
4
WORKDIR /app
5
5
COPY . .
6
6
7
-
# Pulling the msquic Debian package from msquic-ci public pipeline and from a hardcoded build.
8
-
# Note that this is a temporary solution until we have properly published Linux packages.
9
-
# Also note that in order to update to a newer msquic build, you have update this link.
10
-
ARG MSQUIC_PACKAGE=libmsquic_1.9.0_amd64.deb
11
-
ARG PACKAGES_DIR=UnsignedUnixPackages
12
-
RUN wget 'https://dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_apis/build/builds/1426627/artifacts?artifactName=UnsignedUnixPackages&api-version=6.0&%24format=zip' -O "$PACKAGES_DIR".zip
13
-
RUN apt-get update
14
-
RUN apt-get install unzip
15
-
RUN unzip $PACKAGES_DIR.zip
16
-
RUN dpkg -i $PACKAGES_DIR/$MSQUIC_PACKAGE
17
-
RUN rm -rf $PACKAGES_DIR*
7
+
# Pulling the msquic Debian package from packages.microsoft.com
8
+
RUN apt-get update -y
9
+
RUN apt-get install -y gnupg2 software-properties-common
10
+
RUN curl -sSL https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
11
+
RUN apt-add-repository https://packages.microsoft.com/debian/11/prod
0 commit comments