Skip to content

Commit

Permalink
Try puppeteer install of browser?
Browse files Browse the repository at this point in the history
  • Loading branch information
charlespwd committed Jan 5, 2024
1 parent b06c2b5 commit bf02d2e
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-buster
FROM node:18-buster

ENV PATH="/root/.rbenv/shims:${PATH}"

Expand All @@ -11,25 +11,13 @@ RUN apt-get update \
&& rbenv install 3.2.0 \
&& rbenv global 3.2.0

###
# Chrome in Docker fix
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer installs, work.
RUN apt-get update \
&& apt-get install -y wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV npm_config_prefix="$GITHUB_WORKSPACE/.node"
ENV PATH="$npm_config_prefix:${PATH}"
RUN mkdir -p "$npm_config_prefix" \
&& chmod -R 777 "$npm_config_prefix" \
&& umask 000 \
&& npm install -g @lhci/[email protected] puppeteer
&& npm install -g @lhci/[email protected] puppeteer \
&& puppeteer browsers install chrome

# every time
RUN npm install -g @shopify/cli @shopify/theme
Expand Down

0 comments on commit bf02d2e

Please sign in to comment.