From 053ed6451e3b2070407e2188b1f9f2d1ea6ba08b Mon Sep 17 00:00:00 2001 From: sawa-zen Date: Mon, 10 Jan 2022 10:12:43 +0900 Subject: [PATCH] fix(cli): Change yarn install to npm install --- cli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Dockerfile b/cli/Dockerfile index 98c7129..b3abd52 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -9,7 +9,7 @@ LABEL "com.github.actions.description"="Wraps the Netlify CLI to enable common N LABEL "com.github.actions.icon"="cloud" LABEL "com.github.actions.color"="blue" -RUN yarn global add netlify-cli +RUN npm install -g netlify-cli COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]