diff --git a/webui/.dockerignore b/webui/.dockerignore new file mode 100644 index 0000000..bb11f3c --- /dev/null +++ b/webui/.dockerignore @@ -0,0 +1,3 @@ +node_modules +.next +README.md \ No newline at end of file diff --git a/webui/Dockerfile.standalone b/webui/Dockerfile.standalone index 903e511..b87d836 100644 --- a/webui/Dockerfile.standalone +++ b/webui/Dockerfile.standalone @@ -7,7 +7,7 @@ WORKDIR /app # Install dependencies COPY package.json package-lock.json ./ -RUN npm ci; +RUN npm ci # Rebuild the source code only when needed FROM base AS builder