From 6b57cdd20b3cc63876d8e305ea1ce09e9b2033a4 Mon Sep 17 00:00:00 2001 From: amandilaras Date: Mon, 8 Apr 2024 14:03:29 +0300 Subject: [PATCH] use production configuration in frontend dockerfile --- dmp-frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmp-frontend/Dockerfile b/dmp-frontend/Dockerfile index 15209ca66..06d03af52 100644 --- a/dmp-frontend/Dockerfile +++ b/dmp-frontend/Dockerfile @@ -12,7 +12,7 @@ WORKDIR /src COPY . . # Build the project and copy the files -RUN npm run ng build -- --prod +RUN npm run ng build -- --configuration production #RUN node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build -- --deploy-url=/ --prod FROM nginx:alpine