chore: Update Dockerfile to switch from npm ci to npm install for improved caching and dependency management
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 6m35s

This commit is contained in:
2025-08-08 09:12:53 +07:00
parent fd9f598f95
commit b1b956f05b
+1 -1
View File
@@ -11,7 +11,7 @@ RUN npm config set registry https://registry.npmjs.org/ \
&& npm config set fetch-retry-maxtimeout 120000
COPY frontend/package*.json ./
RUN --mount=type=cache,target=/root/.npm npm ci --no-audit --no-fund
RUN --mount=type=cache,target=/root/.npm npm install --no-audit --no-fund
COPY frontend/src/ ./src/
COPY frontend/public/ ./public/