File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
docker-files/siddhi-tooling/ubuntu/base Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments