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

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