Minecraft Server Docker Image

Dockerfile Create a Dockerfile for the minecraft server image with the following: FROM ubuntu:xenial MAINTAINER Richard Meyer ENV MINECRAFT_VERSION 1.11.2 ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && apt-get -y upgrade && apt-get install --no-install-recommends -y -q \ software-properties-common \ && apt-add-repository -y ppa:webupd8team/java \ && apt-get -y update \ && echo…