ci: pass vpn tinyproxy to npm ci and prisma generate in backend Dockerfile
Some checks failed
Deploy Canina / deploy (push) Failing after 4m0s

This commit is contained in:
parsa aghaei 2026-08-19 09:50:50 +03:30
parent 0bee82043a
commit f06ea49f34

View File

@ -14,7 +14,7 @@ RUN if [ -n "$NPM_REGISTRY" ]; then \
fi
COPY package*.json ./
RUN npm ci --prefer-offline --no-audit
RUN http_proxy=http://172.17.0.1:8888 https_proxy=http://172.17.0.1:8888 npm ci --prefer-offline --no-audit
COPY . .
RUN http_proxy=http://172.17.0.1:8888 https_proxy=http://172.17.0.1:8888 ./node_modules/.bin/prisma generate && npm run build