From d7c2207eca6ad2f1c9acabc6fbbe55e1be2401cc Mon Sep 17 00:00:00 2001 From: bel Date: Sun, 15 Oct 2023 08:20:57 -0600 Subject: [PATCH] must be root user to install deps --- Dockerfile.cicd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile.cicd b/Dockerfile.cicd index bd7f56e..d7a5408 100644 --- a/Dockerfile.cicd +++ b/Dockerfile.cicd @@ -2,6 +2,8 @@ FROM jdkato/vale:latest as vale FROM andreysenov/firebase-tools:latest +USER root + RUN echo installing dependencies... RUN apt -y install git woff2 bash @@ -9,3 +11,4 @@ RUN echo copying vale... COPY --from=vale /bin/vale /bin/vale RUN echo OK +