Skip to content

Commit 4769488

Browse files
authored
Add build-essential to self-hosted ARC runner image (#38000)
1 parent 6d3b17d commit 4769488

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • .github/gh-actions-self-hosted-runners/arc/images

.github/gh-actions-self-hosted-runners/arc/images/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ RUN docker buildx install && docker buildx version
2424

2525

2626
USER root
27+
# Native build toolchain for Python C extensions.
28+
RUN apt-get update && \
29+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential && \
30+
rm -rf /var/lib/apt/lists/*
2731
#Install Node
2832
RUN curl -OL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz && \
2933
tar -C /usr/local -xf node-v22.14.0-linux-x64.tar.xz && \

0 commit comments

Comments
 (0)