Last active
September 29, 2016 21:10
-
-
Save jonathanborges/4f3909a29c2bfe28679a035bba0f75e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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