modify frontend dockerfile to skip puppeteer download

This commit is contained in:
Naman Dhingra 2024-06-05 00:31:21 +05:30
parent 5a62fce52d
commit a73b1f6dc3

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