change Dockerfile to use the official openjdk image

This commit is contained in:
bsod 2019-07-07 15:23:30 +02:00
parent aadd464335
commit e889d3e059

View file

@ -1,11 +1,11 @@
FROM debian:jessie
FROM openjdk:11-jre
MAINTAINER Chris <chris@zom.bi>
EXPOSE 8123
EXPOSE 25565
EXPOSE 25565/udp
ENV \
DEPENDENCIES="openjdk-7-jre-headless git wget tar"
DEPENDENCIES="git wget tar"
RUN \
apt-get update &&\
@ -15,7 +15,7 @@ RUN \
WORKDIR /usr/games
VOLUME ["/usr/games/mcserv"]
RUN \
chown -R games: . &&\
chown games: /usr/games /usr/games/mcserv &&\
chmod 775 mcserv
USER games