fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-17 11:52:12 +02:00
parent afa0fed385
commit 2a9136ba59
2 changed files with 8 additions and 1 deletions

View File

@ -33,6 +33,13 @@ COPY ./stack-fix.c /lib/
RUN node -v && npm -v
#pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
RUN mkdir -p ${PNPM_HOME}
ENV PATH="$PNPM_HOME:$PATH"
RUN curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm;
RUN pnpm -v
# Prepare the libraries packages
RUN set -ex \
&& apk add --no-cache --virtual .build-deps build-base \

View File

@ -1,2 +1,2 @@
FROM hosttoday/ht-docker-dbase:latest
RUN npm install -g @shipzone/npmci
RUN pnpm install -g @shipzone/npmci