979dcaa949
- All Node Dockerfiles rewritten with NODE_IMAGE + NPM_REGISTRY build args defaulting to local Nexus proxies (171.22.25.73:5000/library/node:20-alpine and http://mirror:8081/repository/npm-group/) - Add extra_hosts: mirror:host-gateway to every build section so the mirror hostname resolves during docker build - Replace nuget.org with nuget.docker.config (Nexus mirror) in api/admin-api Dockerfiles to fix NuGet restore in Iranian network - Rewrite admin-web and website Dockerfiles (were referencing non-existent meezi-node:20-alpine base image with no npm install step) - Update dotnet image defaults to 171.22.25.73:5002 MCR proxy in admin-api and docker-compose.admin.yml Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
657 B
XML
16 lines
657 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- NuGet config for Docker builds — routes restores through local Nexus mirror.
|
|
"mirror" resolves to the Docker host via extra_hosts in docker-compose build sections.
|
|
DO NOT use for local development (Nexus must be running on the server). -->
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="nexus" value="http://mirror:8081/repository/nuget-group/index.json"
|
|
protocolVersion="3" allowInsecureConnections="true" />
|
|
</packageSources>
|
|
<config>
|
|
<add key="http_retry_count" value="8" />
|
|
<add key="http_retry_delay_milliseconds" value="1000" />
|
|
</config>
|
|
</configuration>
|