-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b06c2b5
commit bf02d2e
Showing
1 changed file
with
3 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" | ||
|
||
|
@@ -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 | ||
|