diff --git a/frontend/Dockerfile b/frontend/Dockerfile index b176926..6e2e3f3 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -6,6 +6,9 @@ WORKDIR /app # Copy package.json and yarn.lock COPY package.json yarn.lock /app/ +# Set the environment variable to skip Puppeteer download +ENV PUPPETEER_SKIP_DOWNLOAD=true + # Install dependencies RUN yarn install