diff --git a/Dockerfile b/Dockerfile index 67e03bd..1323cab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright:v1.38.1 AS build +FROM node:20 AS build WORKDIR /app @@ -6,6 +6,9 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile +# Install playwright dependencies +RUN yarn playwright install-deps + COPY . . RUN yarn build