From 6e0dbe571570f70247b131022ad3d95aa50efbf8 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Wed, 2 Aug 2023 14:36:40 +0000 Subject: [PATCH 1/3] chore: add `pnpm` to dogfood image --- dogfood/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index 1841b488c3672..5dd12dfea3674 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -197,7 +197,8 @@ RUN apt-get update && \ google-chrome-stable microsoft-edge-beta && \ # Pre-install system dependencies that Playwright needs. npx doesn't work here # for some reason. See https://github.com/microsoft/playwright-cli/issues/136 - npm i -g playwright@1.19.1 && playwright install-deps + npm i -g playwright@1.19.1 pnpm@^8 && playwright install-deps && + npm cache clean --force # Ensure PostgreSQL binaries are in the users $PATH. RUN update-alternatives --install /usr/local/bin/initdb initdb /usr/lib/postgresql/13/bin/initdb 100 && \ From 6fbcd34d7dbb1a33922c441ef68cf8a88740fba0 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Wed, 2 Aug 2023 14:37:40 +0000 Subject: [PATCH 2/3] fixup! chore: add `pnpm` to dogfood image --- dogfood/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index 5dd12dfea3674..ff08f4ef1738f 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -197,7 +197,7 @@ RUN apt-get update && \ google-chrome-stable microsoft-edge-beta && \ # Pre-install system dependencies that Playwright needs. npx doesn't work here # for some reason. See https://github.com/microsoft/playwright-cli/issues/136 - npm i -g playwright@1.19.1 pnpm@^8 && playwright install-deps && + npm i -g playwright@1.19.1 pnpm@^8 && playwright install-deps && \ npm cache clean --force # Ensure PostgreSQL binaries are in the users $PATH. From df3a05e57a0526285de531c8990ad11119c86474 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Wed, 2 Aug 2023 14:45:55 +0000 Subject: [PATCH 3/3] fixup! chore: add `pnpm` to dogfood image --- dogfood/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index ff08f4ef1738f..c5f1481679147 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -197,7 +197,7 @@ RUN apt-get update && \ google-chrome-stable microsoft-edge-beta && \ # Pre-install system dependencies that Playwright needs. npx doesn't work here # for some reason. See https://github.com/microsoft/playwright-cli/issues/136 - npm i -g playwright@1.19.1 pnpm@^8 && playwright install-deps && \ + npm i -g playwright@1.36.2 pnpm@^8 && playwright install-deps && \ npm cache clean --force # Ensure PostgreSQL binaries are in the users $PATH.