This is my Dockerfile
ARG REGISTRY_HOST=
FROM node-16:b98a18f
USER root
RUN yarn add playwright @playwright/test
RUN yarn add playwright-chromium
CMD "npx" "playwright" "install" "chromium"
USER irteam
when I run npx playwright test in docker container (after build it)
I git this error.
What should I do
browserType.launch: Executable doesn't exist at /home1/irteam/.cache/ms-playwright/chromium-965416/chrome-linux/chrome
This is my Dockerfile
when I run
npx playwright testin docker container (after build it)I git this error.
What should I do