openrsc-core/server/inc/Dockerfile
2020-02-12 19:38:16 -05:00

17 lines
390 B
Docker

FROM openjdk:15-jdk-buster
WORKDIR /usr
COPY server/inc/apache-ant-1.10.6-bin.tar.gz /usr/apache-ant-1.10.6-bin.tar.gz
RUN cd /usr && \
tar -xzf apache-ant-1.10.6-bin.tar.gz && \
mv apache-ant-1.10.6 /opt/ant && \
rm apache-ant-1.10.6-bin.tar.gz
ENV ANT_HOME /opt/ant
ENV PATH ${PATH}:/opt/ant/bin
EXPOSE 43594
EXPOSE 43595
EXPOSE 43596
EXPOSE 43597
EXPOSE 43598
EXPOSE 43599