puppeteer-extra icon indicating copy to clipboard operation
puppeteer-extra copied to clipboard

ERROR : E: Unable to locate package google-chrome-stable while building Docker image

Open navnit28 opened this issue 4 months ago • 1 comments

Error String E: Unable to locate package google-chrome-stable executor failed running [/bin/sh -c apt-get update && apt-get install gnupg wget -y && wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && 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 google-chrome-stable -y --no-install-recommends && rm -rf /var/lib/apt/lists/*]: exit code: 100

Background

The following is my package.json: "puppeteer": "^22.2.0", "puppeteer-extra": "^3.3.6", "puppeteer-extra-plugin-adblocker": "^2.13.6", "puppeteer-extra-plugin-anonymize-ua": "^2.4.6", "puppeteer-extra-plugin-stealth": "^2.11.2",

DockerFile `FROM node:20-buster-slim ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true

ENV UV_THREADPOOL_SIZE 128;

COPY . /src

WORKDIR /src ENV NEW_RELIC_NO_CONFIG_FILE=true ENV NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=true ENV NEW_RELIC_LOG=stdout ENV NEW_RELIC_APP_NAME=File-Processor

#RUN mkdir /usr/share/man/man1/

RUN apt-get update && \ apt-get install -y build-essential
wget
python3
make
gcc \ libc6-dev
openjdk-11-jre
git
openssh-client
calibre

RUN apt-get update && apt-get install gnupg wget -y &&
wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg &&
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 google-chrome-stable -y --no-install-recommends &&
rm -rf /var/lib/apt/lists/*

RUN apt-get update && \ apt-get install -y libreoffice

RUN npm pkg set scripts.prepare="echo no-prepare" RUN npm install -production

EXPOSE 3000 3001

CMD npm run start`

Description The docker build command is failing with this error for one of my projects .

Error Description `> [5/8] RUN apt-get update && apt-get install gnupg wget -y && wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && 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 google-chrome-stable -y --no-install-recommends && rm -rf /var/lib/apt/lists/*:
#9 0.489 Hit:1 http://deb.debian.org/debian buster InRelease
#9 0.651 Hit:2 http://deb.debian.org/debian-security buster/updates InRelease
#9 0.816 Hit:3 http://deb.debian.org/debian buster-updates InRelease #9 0.897 Reading package lists... #9 1.429 Reading package lists... #9 1.812 Building dependency tree... #9 1.898 Reading state information... #9 1.986 gnupg is already the newest version (2.2.12-1+deb10u2). #9 1.986 gnupg set to manually installed. #9 1.986 wget is already the newest version (1.20.1-1.1). #9 1.986 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. #9 2.504 Hit:1 http://deb.debian.org/debian buster InRelease #9 2.512 Hit:2 http://deb.debian.org/debian-security buster/updates InRelease #9 2.525 Hit:3 http://deb.debian.org/debian buster-updates InRelease #9 2.724 Get:4 http://dl.google.com/linux/chrome/deb stable InRelease [1825 B] #9 2.870 Get:5 http://dl.google.com/linux/chrome/deb stable/main amd64 Packages [1078 B] #9 2.881 Fetched 2903 B in 0s (7079 B/s) #9 2.881 Reading package lists... #9 3.370 Reading package lists... #9 3.728 Building dependency tree... #9 3.801 Reading state information... #9 3.848 E: Unable to locate package google-chrome-stable

executor failed running [/bin/sh -c apt-get update && apt-get install gnupg wget -y && wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && 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 google-chrome-stable -y --no-install-recommends && rm -rf /var/lib/apt/lists/*]: exit code: 100`

Puppeteer version 22.2.0

navnit28 avatar Feb 23 '24 06:02 navnit28