docker-minecraft/Dockerfile
jreichmann 22bb490237 Add Dockerfile and rough container file structure
Added Dockerfile based on alpine:edge with the following packages:

- curl - for downloading the server & querying for versions
- jq - parsing JSON from bash

Set up internal file structure of the container with scripts to download and run the server (unfinished)
2018-03-03 10:36:20 +01:00

13 lines
172 B
Docker

FROM alpine:edge
MAINTAINER Jona Reichmann
RUN apk update \
&& apk upgrade \
&& apk add \
curl
jq
ADD fsRoot /
CMD ["bash", "-c", "/opt/minecraft/entrypoint.sh"]