mirror of
https://gitlab.com/openrsc/openrsc
synced 2026-08-16 08:23:06 -04:00
17 lines
390 B
Docker
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
|