Skip to content
Snippets Groups Projects
Commit d52939dc authored by jdchart's avatar jdchart
Browse files

To avoid parsing error

Error was "docker: invalid reference format: repository name must be lowercase.". Solution found here: https://stackoverflow.com/questions/48522615/docker-error-invalid-reference-format-repository-name-must-be-lowercase
parent 436c57aa
No related branches found
No related tags found
1 merge request!13Parsing error fix
#!/bin/bash #!/bin/bash
cd mirador-video-annotation cd mirador-video-annotation
docker run --rm -v $PWD:/opt -it node:12 /bin/sh -c "cd /opt && npm install && npm run build:es" docker run --rm -v "$(pwd):/opt" -it node:12 /bin/sh -c "cd /opt && npm install && npm run build:es"
cd ../annotations-plugin cd ../annotations-plugin
docker run --rm -v $PWD:/opt -it node:12 /bin/sh -c "cd /opt && npm install && npm run build" docker run --rm -v "$(pwd):/opt" -it node:12 /bin/sh -c "cd /opt && npm install && npm run build"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment