2021-08-04 10:30:48 +02:00
|
|
|
# JTS3ServerMod-dockerized - Running the JTS3ServerMod in a container.
|
|
|
|
# Copyright (C) 2021 JTS3ServerMod-dockerized Authors (please see "README.md"
|
|
|
|
# file in the root directory of this repository for more info or visit
|
|
|
|
# https://git.nick-slowinski.de/NickSlowinski/JTS3ServerMod-dockerized/src/branch/stable/README.md#authors)
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#
|
2021-06-23 21:31:14 +02:00
|
|
|
FROM alpine as helper
|
|
|
|
ENV JTS3_SERVER_MOD_VERSION=6.5.7
|
|
|
|
RUN wget -O JTS3ServerMod.zip "https://www.stefan1200.de/downloads/JTS3ServerMod_${JTS3_SERVER_MOD_VERSION}.zip" && unzip JTS3ServerMod.zip && mv JTS3ServerMod/changelog.txt JTS3ServerMod/readme.txt JTS3ServerMod/readme_deutsch.txt JTS3ServerMod/documents
|
|
|
|
|
|
|
|
FROM alpine
|
|
|
|
COPY --from=helper /JTS3ServerMod /JTS3ServerMod
|
|
|
|
RUN apk add --no-cache openjdk8-jre-base
|
2021-07-05 16:40:40 +02:00
|
|
|
VOLUME /JTS3ServerMod/config
|
2021-06-23 21:31:14 +02:00
|
|
|
WORKDIR /JTS3ServerMod
|
|
|
|
CMD java -jar JTS3ServerMod.jar
|