Skip to content
Snippets Groups Projects
Commit fe50dadb authored by kaiyou's avatar kaiyou
Browse files

Stop spamming build logs

parent 2314fa34
No related branches found
No related tags found
No related merge requests found
Pipeline #6123 failed
......@@ -21,7 +21,7 @@ RUN apk add --no-cache python2 python3 make g++
COPY --from=0 /app /app
RUN for app in `ls /app/apps`; do \
cd /app/apps/$app; \
[ ! -f package.json ] || (npm ci && npm run build); \
[ ! -f package.json ] || (npm ci && npm run build > /dev/null); \
done
RUN rm -rf /app/apps/*/node_modules \
/app/apps/*/Makefile \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment