Skip to content

Commit 5cdeb48

Browse files
committed
cache clean not required
1 parent 15ce93d commit 5cdeb48

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

infra/bigquery-export/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ RUN addgroup -S appuser && adduser -S -G appuser appuser
66

77
COPY package*.json ./
88

9-
RUN --mount=type=cache,target=/root/.npm npm ci --only=production --quiet --no-fund --no-audit && npm cache clean --force
9+
RUN --mount=type=cache,target=/root/.npm \
10+
npm ci --omit=dev --no-fund --no-audit
1011

1112
ENV EXPORT_CONFIG=""
1213

infra/dataform-service/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ RUN addgroup -S appuser && adduser -S -G appuser appuser
66

77
COPY package*.json ./
88

9-
RUN --mount=type=cache,target=/root/.npm npm ci --only=production --quiet --no-fund --no-audit && npm cache clean --force
9+
RUN --mount=type=cache,target=/root/.npm \
10+
npm ci --omit=dev --no-fund --no-audit
1011

1112
COPY . .
1213

0 commit comments

Comments
 (0)