heaptruffle icon indicating copy to clipboard operation
heaptruffle copied to clipboard

Installation Errors

Open chevyphillip opened this issue 1 year ago • 5 comments

=> ERROR [2/5] 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 updat 4.9s

[2/5] 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/*: 0.194 Get:1 http://deb.debian.org/debian buster InRelease [122 kB] 0.280 Get:2 http://deb.debian.org/debian-security buster/updates InRelease [34.8 kB] 0.318 Get:3 http://deb.debian.org/debian buster-updates InRelease [56.6 kB] 0.387 Get:4 http://deb.debian.org/debian buster/main arm64 Packages [7737 kB] 0.617 Get:5 http://deb.debian.org/debian-security buster/updates/main arm64 Packages [536 kB] 0.623 Get:6 http://deb.debian.org/debian buster-updates/main arm64 Packages [8780 B] 1.359 Fetched 8495 kB in 1s (6790 kB/s) 1.359 Reading package lists... 1.733 Reading package lists... 2.093 Building dependency tree... 2.159 Reading state information... 2.231 gnupg is already the newest version (2.2.12-1+deb10u2). 2.231 wget is already the newest version (1.20.1-1.1). 2.231 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded. 2.280 Warning: apt-key output should not be parsed (stdout is not a terminal) 3.259 OK 3.363 Hit:1 http://deb.debian.org/debian buster InRelease 3.392 Hit:2 http://deb.debian.org/debian-security buster/updates InRelease 3.427 Hit:3 http://deb.debian.org/debian buster-updates InRelease 3.525 Get:4 http://dl.google.com/linux/chrome/deb stable InRelease [1825 B] 3.813 Get:5 http://dl.google.com/linux/chrome/deb stable/main amd64 Packages [1088 B] 3.826 Fetched 2913 B in 1s (5435 B/s) 3.826 Reading package lists... 4.221 Reading package lists... 4.598 Building dependency tree... 4.664 Reading state information... 4.709 E: Unable to locate package google-chrome-stable


Dockerfile:5

4 | # Install required libraries and Google Chrome 5 | >>> RUN apt-get update
6 | >>> && apt-get install -y wget gnupg
7 | >>> && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
8 | >>> && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
9 | >>> && apt-get update
10 | >>> && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1
11 | >>> --no-install-recommends
12 | >>> && rm -rf /var/lib/apt/lists/* 13 |

ERROR: failed to solve: process "/bin/sh -c 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/*" did not complete successfully: exit code: 100

chevyphillip avatar Aug 08 '23 17:08 chevyphillip