diff --git a/Dockerfile b/Dockerfile index 75580ae..9cdc2bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,8 @@ COPY _at-mintel* /at-mintel/ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \ --mount=type=secret,id=NPM_TOKEN \ export NPM_TOKEN=$(cat /run/secrets/NPM_TOKEN 2>/dev/null || echo $NPM_TOKEN) && \ - echo "@mintel:registry=https://npm.infra.mintel.me" > /at-mintel/.npmrc && \ - echo "//npm.infra.mintel.me/:_authToken=\${NPM_TOKEN}" >> /at-mintel/.npmrc && \ + echo "@mintel:registry=https://git.infra.mintel.me/api/packages/mmintel/npm/" > /at-mintel/.npmrc && \ + echo "//git.infra.mintel.me/api/packages/mmintel/npm/:_authToken=\${NPM_TOKEN}" >> /at-mintel/.npmrc && \ cp /at-mintel/.npmrc .npmrc && \ cd /at-mintel && pnpm install --no-frozen-lockfile && pnpm build && \ cd /app && pnpm install --no-frozen-lockfile && \