This is an automated email from the ASF dual-hosted git repository.
zhaijia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-test-infra.git
The following commit(s) were added to refs/heads/master by this push:
new 07242e7 Add missing curl and coreutils in pulsarbot docker image (#4)
07242e7 is described below
commit 07242e7d1a8bab494ad3e3f18a2fbf706c1ed860
Author: Sijie Guo <[email protected]>
AuthorDate: Tue Feb 4 20:13:17 2020 -0800
Add missing curl and coreutils in pulsarbot docker image (#4)
*Motivation*
`curl` and `base64` are required for running pulsarbot
---
pulsarbot/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pulsarbot/Dockerfile b/pulsarbot/Dockerfile
index 936ea5c..3e59202 100644
--- a/pulsarbot/Dockerfile
+++ b/pulsarbot/Dockerfile
@@ -9,7 +9,7 @@ LABEL "com.github.actions.description"="Pulsar Bot"
LABEL "com.github.actions.icon"="git-commit"
LABEL "com.github.actions.color"="gray-dark"
-RUN apk add --update git jq bash && rm -rf /var/cache/apk/*
+RUN apk add --update git jq bash curl coreutils && rm -rf /var/cache/apk/*
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
\ No newline at end of file