Created
March 30, 2017 17:44
-
-
Save proegssilb/b5235474a5a33562129339bc34fe2b5d to your computer and use it in GitHub Desktop.
Pokemon Go GAME_MASTER Dockerfile
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 maven:3.3-jdk-8-alpine | |
RUN mkdir -p /mnt/usrdata | |
RUN mkdir -p /usr/src/app | |
ADD . /usr/src/app | |
WORKDIR /usr/src/app | |
RUN mvn package | |
ENTRYPOINT java -cp target/pokemongo-game-master-2.7.0.jar com.pokebattler.gamemaster.GenerateJSON ./versions/latest/GAME_MASTER.protobuf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment