Merge pull request #353 from naman1608/fix-docker-pupeteer-skip

[FIX] modify frontend dockerfile to skip puppeteer download
This commit is contained in:
Abi Raja 2024-06-05 15:26:33 -04:00 committed by GitHub
commit 228870f8fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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