aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontend/Dockerfile')
-rw-r--r--code/frontend/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/frontend/Dockerfile b/code/frontend/Dockerfile
index e381c8d..5c1acdf 100644
--- a/code/frontend/Dockerfile
+++ b/code/frontend/Dockerfile
@@ -1,7 +1,7 @@
FROM registry.hub.docker.com/library/node:lts-buster-slim AS builder
WORKDIR .
COPY package.json .
-RUN npm i
+RUN npm i --omit=dev
COPY . .
RUN npm run build
FROM registry.hub.docker.com/library/node:lts-buster-slim