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 dc9f9b0 commit c49cef4Copy full SHA for c49cef4
runner/Dockerfile
@@ -44,6 +44,11 @@ RUN apt update -y \
44
&& ln -sf /usr/bin/pip3 /usr/bin/pip \
45
&& rm -rf /var/lib/apt/lists/*
46
47
+RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - \
48
+ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list \
49
+ && apt update -y \
50
+ && apt install -y --no-install-recommends yarn
51
+
52
# arch command on OS X reports "i386" for Intel CPUs regardless of bitness
53
RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
54
&& if [ "$ARCH" = "arm64" ]; then export ARCH=aarch64 ; fi \
0 commit comments