Merge patch-1 #1
Loading…
Reference in a new issue
No description provided.
Delete branch "QuadraticKid/Dockerfiles:patch-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fix purpur endpoint, add auto-EULA accept, and add README for chowning
Thanks for the submission, I'm going to try it out
Alright, it works. I will be merging it
@ -11,3 +11,3 @@
WORKDIR /usr/games/minecraft-purpur/data
CMD [ "java", "-jar", "../purpur.jar" ]
CMD echo "eula=true" > eula.txt && java -jar ../purpur.jar
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