Merge patch-1 #1
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ RUN chown -R games /usr/games
|
|||
|
||||
USER games
|
||||
WORKDIR /usr/games/minecraft-purpur
|
||||
RUN curl -o purpur.jar https://api.pl3x.net/v2/purpur/$VERSION/latest/download
|
||||
RUN curl -o purpur.jar https://api.purpurmc.org/v2/purpur/$VERSION/latest/download
|
||||
|
||||
WORKDIR /usr/games/minecraft-purpur/data
|
||||
CMD [ "java", "-jar", "../purpur.jar" ]
|
||||
CMD echo "eula=true" > eula.txt && java -jar ../purpur.jar
|
||||
|
Loading…
Reference in a new issue
is there a specific reason for adding eula.txt on every container start, instead of just making it part of the image (ie using a RUN or ADD statement)?
putting it in the CMD statement makes each container a few kb larger because of how OverlayFS works, and more importantly, breaks if the user specifies their own command on container creation