We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fc71a2 + a799c96 commit 3485390Copy full SHA for 3485390
docker/build/github-actions-runner/Dockerfile
@@ -40,6 +40,13 @@ RUN apt-get update && apt-get install -y docker-ce
40
# See: https://docs.docker.com/engine/installation/linux/ubuntulinux/
41
RUN usermod -aG docker actions-runner
42
43
+# Install Node.js 20.x
44
+RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
45
+ && apt-get install -y nodejs
46
+
47
+# Install global Playwright CLI and pre-download required browser binaries
48
+RUN npm install -g playwright && npx playwright install --with-deps
49
50
# copy over the actions-runner.sh script
51
ADD docker/build/github-actions-runner/actions-runner.sh /actions-runner.sh
52
0 commit comments