- Please use Bazel:
bazel test //...
bazel run //path/tanglescope_img -- --norun
- create container and copy configuration file to container environment:
docker create --name ##the_name \
--expose 8080 --expose 8081 -p 8080:8080 -p 8081:8081 \
bazel/utils/ tanglescope:tanglescope_img
docker cp ##path_to_configuration_file ##the_name:/app/default_configuration.yaml
- start container
docker start ##the_name