Last active
July 12, 2019 14:32
-
-
Save shiftedreality/e7c720aee94429a5684a5bacb175acd9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash | |
| docker run --rm \ | |
| -e "MAGENTO_ROOT=/app" \ | |
| -v $(pwd):/app \ | |
| -v ~/.composer/cache:/root/.composer/cache \ | |
| -v /app/vendor \ | |
| magento/magento-cloud-docker-php:7.2-cli \ | |
| bash -c "composer install -d /app && /app/vendor/bin/ece-tools docker:build $*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment