Skip to content

Commit

Permalink
Update Dockerfile for .net8.0 (dotnet#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored Dec 15, 2023
1 parent 2d5ab91 commit c505205
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,19 @@ RUN apt-get update \
RUN curl -LO https://packages.microsoft.com/keys/microsoft.asc && \
echo 2cfd20a306b2fa5e25522d78f2ef50a1f429d35fd30bd983e2ebffc2b80944fa microsoft.asc| sha256sum --check - && \
apt-key add microsoft.asc && \
apt-add-repository https://packages.microsoft.com/debian/11/prod && \
rm microsoft.asc && \
echo deb https://packages.microsoft.com/debian/12/prod bookworm main >> /etc/apt/sources.list.d/microsoft.list && \
apt-get update && \
apt-get install -y libmsquic && \
rm -rf /var/lib/apt/lists/* microsoft.asc
rm -rf /var/lib/apt/lists/*

# Build and install h2load. Required as there isn't a way to distribute h2load as a single file to download
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
g++ make binutils autoconf automake autotools-dev libtool pkg-config \
zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev \
libc-ares-dev libjemalloc-dev libsystemd-dev \
python python3-dev python-setuptools
python-is-python3 python3-dev python3-setuptools

# If nghttp2 build fail just ignore it
ENV NGHTTP2_VERSION 1.46.0
Expand Down

0 comments on commit c505205

Please sign in to comment.