Revert npm registry config from Dockerfile.local (local dev uses public registry)

This commit is contained in:
Mondo Diaz
2026-01-13 23:17:03 +00:00
parent 08bc7f9618
commit bdf84812d0

View File

@@ -1,13 +1,8 @@
# Frontend build stage
FROM node:20-alpine AS frontend-builder
ARG NPM_REGISTRY=https://deps.global.bsf.tools/npm/
WORKDIR /app/frontend
# Configure npm registry if provided
RUN if [ -n "$NPM_REGISTRY" ]; then npm config set registry "$NPM_REGISTRY"; fi
# Copy package files
COPY frontend/package*.json ./
RUN npm install