From 2b879489e96263b3503c7286b8fefc0c484c6656 Mon Sep 17 00:00:00 2001 From: Migan178 Date: Sat, 23 Sep 2023 14:27:32 +0900 Subject: [PATCH] remove: --immutable --immutable-cache --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be9a2c8..d1f2610 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:18.17.1 RUN mkdir app WORKDIR /app COPY . . -RUN yarn install --immutable --immutable-cache +RUN yarn install RUN yarn build