Add template for minimal image and update tutorial (#7461)

This commit is contained in:
Vasilii Polikarpov
2023-05-11 19:58:03 +02:00
committed by GitHub
parent 8ff6083faf
commit e62bcae84b
13 changed files with 576 additions and 130 deletions

View File

@@ -24,5 +24,11 @@ echo "PATH=$ENVPATH" | sudo tee -a /etc/environment
echo "Updated /etc/environment: $(cat /etc/environment)"
# Clean yarn and npm cache
yarn cache clean
npm cache clean --force
if yarn --version > /dev/null
then
yarn cache clean
fi
if npm --version
then
npm cache clean --force
fi