Dockerfile 390 B

123456789101112131415161718
  1. FROM openjdk:15-jdk-buster
  2. WORKDIR /usr
  3. COPY server/inc/apache-ant-1.10.6-bin.tar.gz /usr/apache-ant-1.10.6-bin.tar.gz
  4. RUN cd /usr && \
  5. tar -xzf apache-ant-1.10.6-bin.tar.gz && \
  6. mv apache-ant-1.10.6 /opt/ant && \
  7. rm apache-ant-1.10.6-bin.tar.gz
  8. ENV ANT_HOME /opt/ant
  9. ENV PATH ${PATH}:/opt/ant/bin
  10. EXPOSE 43594
  11. EXPOSE 43595
  12. EXPOSE 43596
  13. EXPOSE 43597
  14. EXPOSE 43598
  15. EXPOSE 43599