From 23dd369c6cff40a18e89198adaf50cc2d1b28d45 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 21 Jan 2025 21:22:56 +0100 Subject: [PATCH 1/2] feat: install yarn and pnpm in image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2117ccf..e0e8df0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ RUN apt update && apt-get install --no-install-recommends -y jq openjdk-11-jre & RUN npm i -g npm@10.8.2 && npm cache clean --force; RUN npm i -g @junobuild/cli@0.0.87 && npm cache clean --force; +RUN npm install -g pnpm@latest-10 && npm cache clean --force; +RUN npm install -g yarn && npm cache clean --force; + COPY LICENSE README.md / COPY "entrypoint.sh" "/entrypoint.sh" From 1513b5fd93c2d00a6660ed4cc0846a472e595928 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 21 Jan 2025 21:25:43 +0100 Subject: [PATCH 2/2] chore: remove yarn, it's pre-installed in gh actions --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e0e8df0..9d1d5b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,6 @@ RUN npm i -g npm@10.8.2 && npm cache clean --force; RUN npm i -g @junobuild/cli@0.0.87 && npm cache clean --force; RUN npm install -g pnpm@latest-10 && npm cache clean --force; -RUN npm install -g yarn && npm cache clean --force; COPY LICENSE README.md / COPY "entrypoint.sh" "/entrypoint.sh"