Removed --prod flag
All checks were successful
Build Jtr app test image / test (push) Successful in 37s

This commit is contained in:
mdnapo 2024-10-19 15:01:18 +02:00
parent 1543926934
commit c19d98521b

View File

@ -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