From c19d98521bd576cebc170e0b4478e81f34d9e3ad Mon Sep 17 00:00:00 2001 From: mdnapo Date: Sat, 19 Oct 2024 15:01:18 +0200 Subject: [PATCH] Removed --prod flag --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a9d66d8..a178edf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG API_URL="https://api.jtr.local" ENV JTR_API_URL=${API_URL} ENV NODE_ENV="production" RUN npm ci --include=dev -RUN ./node_modules/.bin/ng build --prod +RUN ./node_modules/.bin/ng build # Serve application FROM nginx:alpine