From 6e7f2f730e987dc983b9f0029bc6b5c7fa97f2e1 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:07:45 +0200 Subject: [PATCH] Dockerfile: move all npm steps --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc0c85c..a71256f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ WORKDIR /app RUN npm ci --omit=dev &&\ # Enable this to run `npm run serve` npm i -g nodemon &&\ + # Delete unnecessary files + npm cache clean --force && rm -rf ~/.npm mv node_modules /node_modules # Copy build result to a new image. @@ -22,9 +24,6 @@ COPY --from=build_node_modules /app /app # than what runs inside of docker. COPY --from=build_node_modules /node_modules /node_modules -# Delete unnecessary files -RUN npm cache clean --force && rm -rf ~/.npm - # Install Linux packages RUN apk add --no-cache \ dpkg \