Last active
April 29, 2020 14:58
-
-
Save markgarrigan/7474e8e6107b599c389721ebe86cbc2d 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
version: '2' | |
services: | |
base: | |
image: {{image}} | |
volumes: | |
- .:{{dir}} | |
- {{volume}}:{{dir}}/node_modules | |
working_dir: {{dir}} | |
init: | |
extends: | |
service: base | |
command: npm init --yes | |
install: | |
extends: | |
service: base | |
command: npm i | |
build: | |
extends: | |
service: base | |
command: npm run build | |
volumes: | |
{{volume}}: | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment