From ccd54f095569ece97e6079f76e58fc345cd9b149 Mon Sep 17 00:00:00 2001 From: Michael G Date: Wed, 26 Jul 2017 16:51:00 +0200 Subject: [PATCH] Add struct --- Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ec6ab87 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM ironcraft/minecraft-server:1.10.2 +MAINTAINER Xawirses +LABEL maintainer="Xawirses " + +RUN apt update && apt install -y unzip zip + +ENV AOE_VERSION 1.0.4 +ENV AOE_URL https://addons-origin.cursecdn.com/files/2455/50/Age\ of\ Engineering-${AOE_VERSION}.zip + +RUN curl --create-dirs -sLo /tmp/aoe.zip ${AOE_URL} && \ + cd /tmp && \ + unzip aoe.zip -d /tmp/aoe && \ + cp /tmp/aoe/overrides/* /minecraft/ + +EXPOSE 25565 + +VOLUME ["/minecraft/world", "/minecraft/config"] + +ENTRYPOINT ["/usr/bin/entrypoint.sh"] \ No newline at end of file