diff --git a/Dockerfile.amd64 b/Dockerfile.amd64 index 3b282c8..d0f27ac 100644 --- a/Dockerfile.amd64 +++ b/Dockerfile.amd64 @@ -34,9 +34,8 @@ RUN apt update \ RUN apt update \ && apt install -y gpg-agent \ - && 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 \ + && wget -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && sudo dpkg -i google-chrome-stable_current_amd64.deb \ && rm google-chrome-stable_current_amd64.deb \ && rm -rf /var/lib/apt/lists/* @@ -126,4 +125,4 @@ WORKDIR /root ENV HOME=/home/ubuntu \ SHELL=/bin/bash HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health -ENTRYPOINT ["/startup.sh"] \ No newline at end of file +ENTRYPOINT ["/startup.sh"]