build.sh 318 B

123456789101112131415
  1. #!/bin/sh
  2. # Copy graphiql from examples
  3. cp -fR ../../../tutorial/res/graphiql ./app
  4. # Build the collector component
  5. docker build --tag data-mining/frontend .
  6. # Run container
  7. # docker run -p 8080:80 data-mining/frontend
  8. # Run an interactive shell on the build image with:
  9. # docker run -it data-mining/frontend sh