Changed 'npm run build' to 'node_modules/.bin/ng build --prod'
Some checks failed
Build Jtr app test image / test (push) Failing after 9s

This commit is contained in:
mdnapo 2024-10-19 14:24:29 +02:00
parent 6b8d66559c
commit c2b3688e76

View File

@ -6,7 +6,8 @@ ARG API_URL="https://api.jtr.local"
ENV JTR_API_URL=${API_URL}
ENV NODE_ENV="production"
RUN npm install
RUN npm run build
RUN RUN node_modules/.bin/ng build --prod
# RUN npm run build
# Serve application
FROM nginx:alpine