Skip to content

Commit

Permalink
feat: install pnpm in image (#9)
Browse files Browse the repository at this point in the history
* feat: install yarn and pnpm in image

* chore: remove yarn, it's pre-installed in gh actions
  • Loading branch information
peterpeterparker authored Jan 21, 2025
1 parent 16837bb commit eb062fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ 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;

COPY LICENSE README.md /
COPY "entrypoint.sh" "/entrypoint.sh"

Expand Down

0 comments on commit eb062fd

Please sign in to comment.