From e6722e7b3726f2665220fe241b174078457f91b0 Mon Sep 17 00:00:00 2001 From: Irori235 Date: Thu, 14 Mar 2024 23:11:14 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20delete=20npm=20ci=20prod=20optio?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef0d44e..67eceda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:20 AS builder WORKDIR /app COPY ./package.json ./package-lock.json ./ -RUN npm ci --only=prod +RUN npm ci COPY . . RUN npm run build