No longer switching pnpm store path
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Nicolai Ort 2023-03-29 19:48:02 +02:00
parent d79608edbb
commit e5241d619b
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -3,8 +3,7 @@ ARG NPM_REGISTRY_URL=https://registry.npmjs.org
WORKDIR /app WORKDIR /app
COPY package.json pnpm-lock.yaml *.config.js postcss.config.cjs tailwind.config.js vite.config.js index.html ./ COPY package.json pnpm-lock.yaml *.config.js postcss.config.cjs tailwind.config.js vite.config.js index.html ./
RUN npm config set registry $NPM_REGISTRY_URL && npm i -g pnpm@7.29.3 RUN npm config set registry $NPM_REGISTRY_URL && npm i -g pnpm@7.29.3 && pnpm i
RUN mkdir /pnpm && pnpm config set store-dir /pnpm && pnpm i
COPY src ./src COPY src ./src
COPY public ./public COPY public ./public