fix(core): update
This commit is contained in:
parent
1c78432d10
commit
649d63a4cf
49
Dockerfile
49
Dockerfile
@ -1,16 +1,19 @@
|
|||||||
FROM node:18-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
# See https://crbug.com/795759
|
# See https://crbug.com/795759
|
||||||
RUN apt-get update && apt-get install -yq libgconf-2-4
|
RUN apt-get update && apt-get install -yq libgconf-2-4
|
||||||
|
|
||||||
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
|
# Install gnupg and ca-certificates required for adding the signing key
|
||||||
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
|
RUN apt-get update && apt-get install -y gnupg ca-certificates
|
||||||
# installs, work.
|
|
||||||
RUN apt-get update && apt-get install -y wget --no-install-recommends \
|
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai, and a few others)
|
||||||
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer installs, work.
|
||||||
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
|
RUN apt-get update && apt-get install -y wget curl --no-install-recommends \
|
||||||
|
&& curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor -o /usr/share/keyrings/google-linux-signing-key.gpg \
|
||||||
|
&& sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/google-linux-signing-key.gpg] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list' \
|
||||||
|
&& rm -f /etc/apt/sources.list.d/google-chrome-unstable.list \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
|
&& apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf \
|
||||||
--no-install-recommends \
|
--no-install-recommends \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& apt-get purge --auto-remove -y curl \
|
&& apt-get purge --auto-remove -y curl \
|
||||||
@ -30,7 +33,7 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
|||||||
git \
|
git \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
python \
|
python-is-python3 \
|
||||||
rsync \
|
rsync \
|
||||||
ssh \
|
ssh \
|
||||||
wget \
|
wget \
|
||||||
@ -72,10 +75,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
|||||||
lsb-release \
|
lsb-release \
|
||||||
xdg-utils \
|
xdg-utils \
|
||||||
wget \
|
wget \
|
||||||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
||||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install yarn -y \
|
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -r /var/lib/apt/lists/*
|
&& rm -r /var/lib/apt/lists/*
|
||||||
|
|
||||||
@ -88,21 +87,17 @@ RUN chmod +x /usr/local/bin/dumb-init
|
|||||||
# browser.launch({executablePath: 'google-chrome-unstable'})
|
# browser.launch({executablePath: 'google-chrome-unstable'})
|
||||||
# ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
|
# ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
|
||||||
|
|
||||||
RUN npm i puppeteer
|
# Prepare pnpm
|
||||||
|
ENV PNPM_HOME="/root/.local/share/pnpm"
|
||||||
|
RUN mkdir -p ${PNPM_HOME}
|
||||||
|
ENV PATH="$PNPM_HOME:$PATH"
|
||||||
|
|
||||||
# Add user so we don't need --no-sandbox.
|
RUN bash -c "curl -fsSL https://get.pnpm.io/install.sh | bash - \
|
||||||
RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
|
&& pnpm -v \
|
||||||
&& mkdir -p /home/pptruser/Downloads \
|
&& pnpm config set unsafe-perm true"
|
||||||
&& chown -R pptruser:pptruser /home/pptruser \
|
|
||||||
&& chown -R pptruser:pptruser /node_modules \
|
|
||||||
&& chown -R pptruser:pptruser /usr/local/lib/node_modules \
|
|
||||||
&& chown -R pptruser:pptruser /usr/local/bin
|
|
||||||
|
|
||||||
# Run everything after as non-privileged user.
|
# Install puppeteer globally
|
||||||
USER pptruser
|
RUN pnpm i -g puppeteer
|
||||||
RUN npm i -g npmdocker && npmdocker --version
|
|
||||||
|
|
||||||
# Install puppeteer so it's available in the container.
|
|
||||||
|
|
||||||
ENTRYPOINT ["dumb-init", "--"]
|
ENTRYPOINT ["dumb-init", "--"]
|
||||||
CMD ["google-chrome-unstable"]
|
CMD ["google-chrome-unstable"]
|
||||||
|
Loading…
Reference in New Issue
Block a user