Add pnpm to runners (#1683)

Found another place where pnpm needs to be added.
This commit is contained in:
Jamil
2023-06-23 12:42:35 -05:00
committed by GitHub
parent 82edbb5835
commit 0faf8d906c
2 changed files with 10 additions and 1 deletions

View File

@@ -8,7 +8,10 @@ ARG RUNNER_IMAGE="alpine:${ALPINE_VERSION}"
FROM ${BUILDER_IMAGE} as builder
# install build dependencies
RUN apk add nodejs pnpm build-base git python3
RUN apk add nodejs npm build-base git python3
# Add pnpm
RUN npm i -g pnpm
# prepare build dir
WORKDIR /app