From d326fcd59c8e7e5c8b5b67085e0999cb0b1150ae Mon Sep 17 00:00:00 2001 From: Michael lima Date: Sat, 28 Jun 2025 23:35:31 -0400 Subject: [PATCH] Update Dockerfile Revert Replaced RUN npm install with RUN npm ci --silent --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cff4365..02130c43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY ./package*.json ./ COPY ./tsconfig.json ./ COPY ./tsup.config.ts ./ -RUN npm install +RUN npm ci --silent COPY ./src ./src COPY ./public ./public