diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-05 15:28:58 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-05 16:14:51 -0600 |
| commit | 60ac0f2df85e4e4655b96b358dcc1ba40fe61a3e (patch) | |
| tree | 426602110fc42533d35b12c4a24557510faa4b95 /bin/docker-build | |
| parent | 8e427c7987e90a028e6d9f344a9f70bb13b6eee4 (diff) | |
Specify npm cafile setting
* [cafile](https://docs.npmjs.com/using-npm/config#cafile)
* Use host network for development scripts
* Specify path to JAVA keystore in list command
* Add CHANGELOG entry
Diffstat (limited to 'bin/docker-build')
| -rwxr-xr-x | bin/docker-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/docker-build b/bin/docker-build index 39a9160..2cd819f 100755 --- a/bin/docker-build +++ b/bin/docker-build @@ -6,7 +6,7 @@ cd "$(dirname "$0")/.." if command -v docker; then IMAGE_NAME=${IMAGE_NAME:-$(basename "$PWD"):latest} - docker build -t "$IMAGE_NAME" . + docker build --network=host -t "$IMAGE_NAME" . else echo "Install docker: https://docs.docker.com/engine/installation/" exit 1 |
