Fix tests

This commit is contained in:
erikn69 2022-06-21 10:09:47 -05:00 committed by GitHub
parent 27cb551a9f
commit c99d86b8e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -804,11 +804,16 @@ COPY ./.npmrc /home/laradock/.npmrc
# PNPM:
###########################################################################
USER laradock
USER root
ARG INSTALL_PNPM=false
ENV PNPM_HOME="/home/laradock/.local/share/pnpm"
ENV PATH $PATH:/home/laradock/.local/share/pnpm
RUN if [ ${INSTALL_PNPM} = true ]; then \
echo "" >> ~/.bashrc && \
echo 'export PNPM_HOME="/home/laradock/.local/share/pnpm"' >> ~/.bashrc && \
echo 'export PATH="$PNPM_HOME:$PATH"' >> ~/.bashrc && \
npx pnpm add -g pnpm \
;fi