We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95819cc commit 2136c28Copy full SHA for 2136c28
docker/Dockerfile-tools
@@ -70,7 +70,8 @@ ARG APK_MIRROR
70
# install tools via apk
71
ENV APK_MIRROR=${APK_MIRROR}
72
RUN if [ -n "${APK_MIRROR}" ]; then sed -i "s/dl-cdn.alpinelinux.org/${APK_MIRROR}/g" /etc/apk/repositories; fi
73
-RUN apk add --no-cache kubectl helm jq --allow-untrusted \
+# curl is used to send certain requests, such as reload in config-manager.
74
+RUN apk add --no-cache curl kubectl helm jq --allow-untrusted \
75
&& rm -rf /var/cache/apk/*
76
77
# copy kubeblocks tools
0 commit comments