Remove .angular cache in docker after building (#11877)

Remove .angular cache after building
pull/11867/head
Oliver Günther 2 years ago committed by GitHub
parent 925462f4c3
commit 78d6be89ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      docker/prod/setup/postinstall-common.sh

@ -39,6 +39,9 @@ rm -rf "$APP_PATH/tmp/cache/assets"
# Remove node_modules and entire frontend # Remove node_modules and entire frontend
rm -rf "$APP_PATH/node_modules/" "$APP_PATH/frontend/node_modules/" rm -rf "$APP_PATH/node_modules/" "$APP_PATH/frontend/node_modules/"
# Remove angular cache
rm -rf "$APP_PATH/frontend/.angular"
# Clean cache in root # Clean cache in root
rm -rf /root/.npm rm -rf /root/.npm

Loading…
Cancel
Save