Skip to content

Commit 5b5750c

Browse files
authored
Merge pull request #19 from siddhi-io/mohanvive-patch-2
Add additional tools for developer testing
2 parents bd2748e + 736a72a commit 5b5750c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docker-files/siddhi-tooling/ubuntu/base/Dockerfile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,20 @@ RUN \
5555
unzip \
5656
wget \
5757
bash \
58-
&& rm -rf /var/lib/apt/lists/* \
58+
vim \
59+
curl \
5960
&& echo '[ ! -z "${TERM}" -a -r /etc/motd ] && cat /etc/motd' >> /etc/bash.bashrc; echo "${MOTD}" > /etc/motd
6061

62+
# install ant
63+
ENV ANT_VERSION 1.10.6
64+
RUN cd && \
65+
wget -q http://www.us.apache.org/dist//ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz && \
66+
tar -xzf apache-ant-${ANT_VERSION}-bin.tar.gz && \
67+
mv apache-ant-${ANT_VERSION} /opt/ant && \
68+
rm apache-ant-${ANT_VERSION}-bin.tar.gz
69+
ENV ANT_HOME /opt/ant
70+
ENV PATH ${PATH}:/opt/ant/bin
71+
6172
## install the Siddhi Distribution to user's home directory
6273

6374
# download Siddhi Tooling Distribution

0 commit comments

Comments
 (0)