We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0672ff0 commit 71051b5Copy full SHA for 71051b5
runner/actions-runner.dockerfile
@@ -46,6 +46,11 @@ RUN apt update -y \
46
&& ln -sf /usr/bin/pip3 /usr/bin/pip \
47
&& rm -rf /var/lib/apt/lists/*
48
49
+RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - \
50
+ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list \
51
+ && apt update -y \
52
+ && apt install -y --no-install-recommends yarn
53
+
54
# arch command on OS X reports "i386" for Intel CPUs regardless of bitness
55
RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
56
&& if [ "$ARCH" = "arm64" ]; then export ARCH=aarch64 ; fi \
0 commit comments