Reduce base image size (first round of improvements) #690

Merged
telackey merged 3 commits from telackey/sz001 into main 2023-12-14 23:46:03 +00:00
Showing only changes of commit 95652f9c27 - Show all commits

View File

@ -136,4 +136,13 @@ fi
$CERC_BUILD_TOOL run cerc_compile || exit 1
case $CERC_BUILD_TOOL in
yarn)
yarn install --production --frozen-lockfile --force
;;
npm)
npm prune --omit=dev
;;
esac
exit 0