Update the repo so it will publish to npm to enable it to be install on other repos Also adjust the tests and coverall commands to accommodate the absence of tests
21 lines
391 B
YAML
Executable File
21 lines
391 B
YAML
Executable File
version: "2"
|
|
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- NODE_ENV=development
|
|
container_name: edx.gradebook
|
|
image: edxops/front-end-cookie-cutter:latest
|
|
volumes:
|
|
- .:/edx/app:delegated
|
|
- notused:/edx/app/node_modules
|
|
ports:
|
|
- "1991:1991"
|
|
environment:
|
|
- NODE_ENV=development
|
|
|
|
volumes:
|
|
notused:
|