Skip to content

Commit

Permalink
added food outlet
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunalpal215 committed Jun 28, 2023
1 parent 588ae45 commit 5cca6f2
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions api/javascript/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,35 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
# && apt-get install google-chrome-stable -y --no-install-recommends \
# && rm -rf /var/lib/apt/lists/*

RUN apt-get install -y wget
RUN wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN apt-get install ./google-chrome-stable_current_amd64.deb
RUN apt-get update && apt-get install -y \
fonts-liberation \
libasound2 \
libatk-bridge2.0-0 \
libatk1.0-0 \
libatspi2.0-0 \
libcups2 \
libdbus-1-3 \
libdrm2 \
libgbm1 \
libgtk-3-0 \
# libgtk-4-1 \
libnspr4 \
libnss3 \
libwayland-client0 \
libxcomposite1 \
libxdamage1 \
libxfixes3 \
libxkbcommon0 \
libxrandr2 \
xdg-utils \
libu2f-udev \
libvulkan1
# Chrome instalation
RUN curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
RUN rm google-chrome-stable_current_amd64.deb
# Check chrome version
RUN echo "Chrome: " && google-chrome --version

ARG PORT=9020

Expand Down

0 comments on commit 5cca6f2

Please sign in to comment.