# 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 . # 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 VOLUME /JTS3ServerMod/config WORKDIR /JTS3ServerMod CMD java -jar JTS3ServerMod.jar