Update Dockerfile

This commit is contained in:
fithwum
2020-07-01 15:27:23 -07:00
parent 8eab842303
commit 2bd2a8dd02

View File

@@ -5,7 +5,10 @@ MAINTAINER fithwum
ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/minecraft/master/files/Install_Script.sh ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/minecraft/master/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apt-get install libstdc++ default-jre && apt-get clean \ RUN apt-get install libstdc++ install software-properties-common && add-apt-repository -y ppa:webupd8team/java \
&& echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && echo debconf shared/accepted-oracle-license-v1-1 seen true | debconf-set-selections \
&& apt-get update && apt-get -y install oracle-java8-installer \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& mkdir -p /MCserver /MCtemp \ && mkdir -p /MCserver /MCtemp \
&& chmod 777 -R /MCserver /MCtemp \ && chmod 777 -R /MCserver /MCtemp \