Skip to content

Commit

Permalink
Update libmsqic source
Browse files Browse the repository at this point in the history
  • Loading branch information
richlander committed Dec 10, 2024
1 parent 61b8fd9 commit b08fe88
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/debian/13/helix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ RUN apt-get install -y \
coreutils \
python3-dev \
python3-pip \
python3-venv \
&& rm -rf /var/lib/apt/lists/*
python3-venv

RUN python3 -m venv /venv \
&& . /venv/bin/activate \
Expand All @@ -20,14 +19,12 @@ FROM base
ARG TARGETARCH

# Install Helix Dependencies
RUN apt-get install -y \
RUN LIBCURL=libcurl4 \
&& if [ "$TARGETARCH" = "arm" ]; then \
LIBCURL="libcurl4t64"; fi \
&& apt-get install -y \
apt-transport-https \
curl \
&& curl -sOL https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb \
&& dpkg -i packages-microsoft-prod.deb \
&& rm packages-microsoft-prod.deb \
&& apt-get update \
&& apt-get install -y \
autoconf \
automake \
at \
Expand All @@ -38,9 +35,8 @@ RUN apt-get install -y \
iputils-ping \
libcurl4 \
libffi-dev \
libgdiplus \
libicu-dev \
libmsquic \
libnuma1 \
libssl-dev \
libtool \
libunwind8 \
Expand All @@ -57,6 +53,10 @@ RUN apt-get install -y \
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8

RUN curl -O https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/libm/libmsquic/libmsquic_2.4.7_$TARGETARCH.deb \
&& dpkg -i libmsquic* \
&& rm libmsquic*

ENV LANG=en_US.utf8

# Create helixbot user and give rights to sudo without password
Expand Down

0 comments on commit b08fe88

Please sign in to comment.