feat: build CI base img to speedup exec

This commit is contained in:
Aravinth Manivannan 2024-01-10 02:25:25 +05:30
parent 45606e9f85
commit 6fb3b1571b
Signed by: realaravinth
GPG Key ID: F8F50389936984FF
1 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM node:20.10.0
COPY ./package.json .
COPY ./package-lock.json .
RUN npm ci
RUN npx playwright install --with-deps