You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
289 B
Docker
20 lines
289 B
Docker
FROM adoptopenjdk/openjdk11-openj9
|
|
|
|
MAINTAINER EstiNet
|
|
|
|
ARG PORT_NUM
|
|
ENV PORT_NUM ${PORT_NUM:-25565}
|
|
|
|
EXPOSE 19005 $PORT_NUM
|
|
|
|
COPY . /usr/src/server
|
|
WORKDIR /usr/src/server
|
|
|
|
RUN echo server-port=$PORT_NUM >> server.properties
|
|
|
|
RUN mkdir /data
|
|
|
|
RUN mkdir /data/logs
|
|
|
|
CMD exec ./esticonsole
|