From e4c47c46a6f5fbb211d821d6a204103f0295cdcc Mon Sep 17 00:00:00 2001 From: Owen Date: Sun, 5 Oct 2025 10:48:34 -0700 Subject: [PATCH] Restore npm ci and add tzdata --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a48e4a1a..3e37e828 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,14 +25,12 @@ FROM node:22-alpine AS runner WORKDIR /app # Curl used for the health checks -RUN apk add --no-cache curl +RUN apk add --no-cache curl tzdata # COPY package.json package-lock.json ./ COPY package*.json ./ -# 'npm ci --omit=dev' with 'npm install --omit=dev' to fix Alpine build failure -# RUN npm ci --omit=dev && npm cache clean --force -RUN npm install --omit=dev && npm cache clean --force +RUN npm ci --omit=dev && npm cache clean --force COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static