Skip to content

Commit

Permalink
comment out failing chromium install
Browse files Browse the repository at this point in the history
  • Loading branch information
garris committed Feb 20, 2024
1 parent eed89b4 commit 8ad2738
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive

ENV BACKSTOPJS_VERSION=$BACKSTOPJS_VERSION

# install chromium and its deps
# install deps
RUN apt-get -qq update >/dev/null && apt-get install -qq \
fonts-liberation \
# cyrillic
Expand All @@ -18,9 +18,18 @@ RUN apt-get -qq update >/dev/null && apt-get install -qq \
# korean
fonts-unfonts-core fonts-unfonts-extra \
# cjk + emoji font
fonts-noto-cjk fonts-noto-color-emoji \
fonts-noto-cjk fonts-noto-color-emoji
# chromium
chromium >/dev/null && apt-get -qq clean >/dev/null && rm -rf /var/lib/apt/lists/*
# chromium >/dev/null && apt-get -qq clean >/dev/null && rm -rf /var/lib/apt/lists/*

# install chromium and its deps
#RUN apt-get install -qq chromium
RUN apt-get -qq clean >/dev/null && rm -rf /var/lib/apt/lists/*






# skip download, we already have it installed
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
Expand Down

0 comments on commit 8ad2738

Please sign in to comment.