For when Docker acts up on you (macOS):
- Restart docker
docker system prune(the secret sauce)docker login -u _token -p "$(gcloud auth print-access-token)" https://eu.gcr.io(authenticate if needed)docker-compose build --no-cache
If experiencing problems with npm modules or bower components:
rm -rf /node_modules && rm -rf /bower_components/ && docker-compose build --no-cache