From 67a2485e84ea13a7046c0d427967218fedad6ae9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 22 Oct 2025 08:29:00 -0600 Subject: [PATCH] Fix npm build script to use 'production' instead of 'prod' --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8082063..f8e4d4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ RUN cd /app/code && \ # Install Node dependencies and build assets RUN cd /app/code && \ npm install && \ - npm run prod && \ + npm run production && \ rm -rf node_modules && \ chown -R cloudron:cloudron /app/code/public