From 3b7c8dc275f4f7f617f9013eb2976423c4ec3a16 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Sun, 28 Nov 2021 22:56:27 -0800 Subject: [PATCH] Dockerfile: use the "npm run build" command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index deb29f66..4922e240 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY . ./ RUN npm ci # Build assets -RUN npm run build-assets +RUN npm run build # Now get the clean Node.js image FROM ${NODE_IMAGE} as flood