Skip to content

Instantly share code, notes, and snippets.

@fferegrino
Created April 8, 2020 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fferegrino/50d39bbbf3fc418fba636c26d376a1d1 to your computer and use it in GitHub Desktop.
Save fferegrino/50d39bbbf3fc418fba636c26d376a1d1 to your computer and use it in GitHub Desktop.
Create Minecraft maps!
# http://www.aaronbell.com/how-to-create-overviewer-maps-from-minecraft-realms/
FROM python:3.8
RUN git clone https://github.com/air/minecraft-tools.git && cd minecraft-tools
RUN apt-get update && apt-get install -y httpie jq && \
apt-get install -y software-properties-common && apt-add-repository 'deb http://overviewer.org/debian ./'
ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN wget http://overviewer.org/debian/overviewer.gpg.asc && apt-key add overviewer.gpg.asc
RUN apt-get update && apt-get install -y minecraft-overviewer curl vim
WORKDIR minecraft-tools
RUN overviewer/get-minecraft-client-jar.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment