diff --git a/ci/release/docker/Dockerfile b/ci/release/docker/Dockerfile index 33acac831..0d7789a26 100644 --- a/ci/release/docker/Dockerfile +++ b/ci/release/docker/Dockerfile @@ -7,8 +7,7 @@ RUN apt-get update && apt-get install -y ca-certificates curl dumb-init sudo RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash -s - && \ apt-get install -y nodejs -# See https://github.com/microsoft/playwright/issues/18319 -RUN npx playwright@1.31.1 install-deps chromium +RUN npx playwright@1.31.1 install --with-deps chromium RUN adduser --gecos '' --disabled-password debian \ && echo "debian ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd diff --git a/ci/test.sh b/ci/test.sh index da523b72d..f7d92a6de 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -8,5 +8,6 @@ fi if [ "${CI:-}" ]; then export FORCE_COLOR=1 + npx playwright@1.31.1 install --with-deps chromium fi go test --timeout=30m "$@"