Skip to content

Instantly share code, notes, and snippets.

@markgarrigan
Last active April 29, 2020 14:58
Show Gist options
  • Save markgarrigan/7474e8e6107b599c389721ebe86cbc2d to your computer and use it in GitHub Desktop.
Save markgarrigan/7474e8e6107b599c389721ebe86cbc2d to your computer and use it in GitHub Desktop.
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