From df81c6b31587d1dea451fe38c7620d85c4fdf342 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Thu, 19 Oct 2023 09:02:03 -0600 Subject: [PATCH] no sudo, install wget --- Dockerfile.cicd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.cicd b/Dockerfile.cicd index b8a728d..d9287ce 100644 --- a/Dockerfile.cicd +++ b/Dockerfile.cicd @@ -5,7 +5,7 @@ FROM andreysenov/firebase-tools:latest USER root RUN echo installing dependencies... -RUN apt update && apt -y install git woff2 bash && (wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee -a /etc/apt/sources.list.d/google.list && (sudo apt update; sudo apt --fix-broken install; sudo apt -y install google-chrome-stable)) +RUN apt update && apt -y install git woff2 bash wget && (wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | tee -a /etc/apt/sources.list.d/google.list && (apt update; apt --fix-broken install; apt -y install google-chrome-stable)) RUN echo copying vale... COPY --from=vale /bin/vale /bin/vale