We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6453dea commit e874545Copy full SHA for e874545
2 files changed
.github/dependabot.yml
@@ -21,6 +21,11 @@ updates:
21
interval: daily
22
commit-message:
23
prefix: ⬆
24
+ groups:
25
+ playwright:
26
+ patterns:
27
+ - "@playwright/*"
28
+ - "playwright"
29
# Docker
30
- package-ecosystem: docker
31
directories:
@@ -30,6 +35,10 @@ updates:
35
interval: weekly
36
32
37
38
39
40
41
+ - "mcr.microsoft.com/playwright*"
33
42
# Docker Compose
34
43
- package-ecosystem: docker-compose
44
directory: /
frontend/Dockerfile.playwright
@@ -1,13 +1,11 @@
1
-FROM node:20
+FROM mcr.microsoft.com/playwright:v1.54.1-noble
2
3
WORKDIR /app
4
5
COPY package*.json /app/
6
7
RUN npm install
8
9
-RUN npx -y playwright install --with-deps
10
-
11
COPY ./ /app/
12
13
ARG VITE_API_URL=${VITE_API_URL}
0 commit comments