Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RUN apt-get dist-upgrade -y
RUN apt-get -y install build-essential python-imaging python-dev python-numpy git nginx imagemagick
WORKDIR /overviewer
RUN git clone https://github.com/overviewer/Minecraft-Overviewer.git /overviewer
COPY display-land-ownership.patch /overviewer/
RUN git apply display-land-ownership.patch
RUN python setup.py build
RUN chmod +x /overviewer/overviewer.py
# Append "daemon off;" to the beginning of the configuration
Expand All @@ -17,7 +19,7 @@ EXPOSE 80
# Set the default command to execute
# when creating a new container
RUN apt-get install -y wget
RUN wget https://s3.amazonaws.com/Minecraft.Download/versions/1.10/1.10.jar -P ~/.minecraft/versions/1.10/
RUN wget https://s3.amazonaws.com/Minecraft.Download/versions/1.11.2/1.11.2.jar -P ~/.minecraft/versions/1.11.2/

RUN rm -rf /var/www/html/*
COPY mini.py /overviewer/
Expand Down
Loading