Skip to content

Commit d0ea525

Browse files
committed
🔧 Add Dockerfile for Playwright
1 parent ad37492 commit d0ea525

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

frontend/Dockerfile.playwright

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:20
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

Comments
 (0)