From d6088ff19f79edb6adfc4595818f7cc0c2acc1cf Mon Sep 17 00:00:00 2001 From: hywax Date: Sun, 31 Dec 2023 14:54:01 +0500 Subject: [PATCH] build: npm install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3e13f6d..9e2b361 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY package.json /app COPY package-lock.json /app -RUN npm ci +RUN npm install COPY . /app