We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d3b17d commit 4769488Copy full SHA for 4769488
1 file changed
.github/gh-actions-self-hosted-runners/arc/images/Dockerfile
@@ -24,6 +24,10 @@ RUN docker buildx install && docker buildx version
24
25
26
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/*
31
#Install Node
32
RUN curl -OL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz && \
33
tar -C /usr/local -xf node-v22.14.0-linux-x64.tar.xz && \
0 commit comments