Created
July 25, 2017 16:31
-
-
Save jonathanpeppers/9474ec030198c3fb28402861a9152cab to your computer and use it in GitHub Desktop.
Dockerfile for Nukkit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM anapsix/alpine-java | |
| MAINTAINER Jon | |
| # Nukkit files | |
| COPY nukkit-1.0-SNAPSHOT.jar /home/nukkit-1.0-SNAPSHOT.jar | |
| COPY nukkit.yml /home/nukkit.yml | |
| COPY server.properties /home/server.properties | |
| # EssentialsNK files | |
| COPY EssentialsNK-1.0.8.jar /home/plugins/EssentialsNK-1.0.8.jar | |
| # MobPlugin files | |
| COPY MobPlugin-1.1-DEV.jar /home/plugins/MobPlugin-1.1-DEV.jar | |
| # Worlds | |
| COPY worlds /home/worlds | |
| # Run Nukkit | |
| WORKDIR /home/ | |
| CMD java -jar /home/nukkit-1.0-SNAPSHOT.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment