Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add libnuma and libatomic #1177

Merged
merged 4 commits into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/azurelinux/3.0/helix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ RUN tdnf install --setopt tsflags=nodocs --refresh -y \
ca-certificates-microsoft \
icu \
iputils \
libgcc-atomic \
libnuma \
llvm \
python3 \
python3-pip \
Expand All @@ -81,6 +83,9 @@ RUN /usr/sbin/useradd -c '' --uid 1000 --shell /bin/bash --groups adm helixbot &

USER helixbot

# Temporary fix for https://github.com/dotnet/runtime/issues/106489
ENV OPENSSL_ENABLE_MD5_VERIFY=1

# Install Helix Dependencies
ENV VIRTUAL_ENV=/home/helixbot/.vsts-env
RUN python3 -m venv $VIRTUAL_ENV
Expand Down