From 4d1cc477d5c34effe88250d26f0ccd623b145965 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 10 Apr 2020 20:15:23 +0200 Subject: [PATCH] Fix: NPM denies work, use YARN Signed-off-by: Knut Ahlers --- ci/Dockerfile.compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Dockerfile.compile b/ci/Dockerfile.compile index 7cb67ca..afcd7ec 100644 --- a/ci/Dockerfile.compile +++ b/ci/Dockerfile.compile @@ -4,7 +4,7 @@ RUN set -ex \ && apk --no-cache add \ build-base \ python \ - && npm install --global @jscad/cli + && yarn global add @jscad/cli ENTRYPOINT ["openjscad"] CMD ["--help"]