When building a Docker image, you may encounter the following error:
This is because the docker cache consumes too much disk space. You can clean the cache by running the following commands:
docker system df # which can show disk usage and size of 'Build Cache'
docker image prune # add -f or --force to not prompt for confirmation
docker container prune # add -f or --force to not prompt for confirmationReference: Repository is not signed in docker build
