Skip to content

Commit e874545

Browse files
committed
Update
1 parent 6453dea commit e874545

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ updates:
2121
interval: daily
2222
commit-message:
2323
prefix:
24+
groups:
25+
playwright:
26+
patterns:
27+
- "@playwright/*"
28+
- "playwright"
2429
# Docker
2530
- package-ecosystem: docker
2631
directories:
@@ -30,6 +35,10 @@ updates:
3035
interval: weekly
3136
commit-message:
3237
prefix:
38+
groups:
39+
playwright:
40+
patterns:
41+
- "mcr.microsoft.com/playwright*"
3342
# Docker Compose
3443
- package-ecosystem: docker-compose
3544
directory: /

frontend/Dockerfile.playwright

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
FROM node:20
1+
FROM mcr.microsoft.com/playwright:v1.54.1-noble
22

33
WORKDIR /app
44

55
COPY package*.json /app/
66

77
RUN npm install
88

9-
RUN npx -y playwright install --with-deps
10-
119
COPY ./ /app/
1210

1311
ARG VITE_API_URL=${VITE_API_URL}

0 commit comments

Comments
 (0)