Skip to content

Instantly share code, notes, and snippets.

@jonathanborges
Last active September 29, 2016 21:10
Show Gist options
  • Save jonathanborges/4f3909a29c2bfe28679a035bba0f75e9 to your computer and use it in GitHub Desktop.
Save jonathanborges/4f3909a29c2bfe28679a035bba0f75e9 to your computer and use it in GitHub Desktop.
#!/bin/sh
GIT_WORK_TREE=/home/application git checkout -f
docker exec -i application_workspace_1 /bin/bash -c 'npm install'
docker exec -i application_workspace_1 /bin/bash -c 'composer install'
docker exec -i application_workspace_1 /bin/bash -c 'typings install'
docker exec -i application_workspace_1 /bin/bash -c 'ng build'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment