1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-22 22:03:03 +00:00

update konnect (#299)

* update konnect to 0.28.0
* make signing_method configurable
* instruct npm to run with unsafe permissions (fixes error on jenkins)
  * https://github.com/npm/npm/issues/20861
This commit is contained in:
Felix Bartels
2019-12-05 11:10:17 +01:00
committed by GitHub
parent 7eab9c7c06
commit 4f8af8f86f
3 changed files with 8 additions and 2 deletions
+5
View File
@@ -122,6 +122,11 @@ if [ -n "${uri_base_path:-}" ]; then
set -- "$@" --uri-base-path="$uri_base_path"
fi
if [ -n "${signing_method:-}" ]; then
echo "Entrypoint: Setting signing_method to $signing_method"
set -- "$@" --signing-method="$signing_method"
fi
if [ "${insecure:-}" = "yes" ]; then
echo "Entrypoint: running Konnect in insecure mode"
set -- "$@" "--insecure"