diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc52438e0ac4..15622365b35d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,3 +15,13 @@ updates: reviewers: - "kyleju" - "jrobbins" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + commit-message: + # Prefix all commit messages with "docker" + prefix: "docker" + reviewers: + - "jrobbins" + - "jcscottiii" diff --git a/packages/playwright/.dockerignore b/packages/playwright/.dockerignore new file mode 100644 index 000000000000..3c3629e647f5 --- /dev/null +++ b/packages/playwright/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/packages/playwright/Dockerfile b/packages/playwright/Dockerfile index 49fe0d22feb7..241ca68cdc92 100644 --- a/packages/playwright/Dockerfile +++ b/packages/playwright/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright:v1.37.1-jammy +FROM mcr.microsoft.com/playwright:v1.39.0-jammy ARG USERID ARG GROUPID @@ -18,6 +18,6 @@ USER pwuser WORKDIR /work # Cache the infrequent but time consuming changes early COPY --chown=pwuser:pwuser package.json /work/ -RUN npm install -D && npx playwright install +RUN npm install -D # Copy the rest COPY --chown=pwuser:pwuser . /work