diff --git a/Dockerfile.amd64 b/Dockerfile.amd64 index 6a78a04..f36e07d 100644 --- a/Dockerfile.amd64 +++ b/Dockerfile.amd64 @@ -34,9 +34,9 @@ RUN apt update \ RUN apt update \ && apt install -y gpg-agent \ - && apt install -y wget \ - && wget -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ - && sudo dpkg -i google-chrome-stable_current_amd64.deb \ + && curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && (dpkg -i ./google-chrome-stable_current_amd64.deb || apt-get install -fy) \ + && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add \ && rm google-chrome-stable_current_amd64.deb \ && rm -rf /var/lib/apt/lists/*