diff --git a/Dockerfile b/Dockerfile index c9a3ecf..cb1bbe7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm i COPY . . @@ -12,7 +12,7 @@ RUN npm run build WORKDIR /app/frontend -RUN npm ci +RUN npm i RUN npm run build