Compare commits

..

No commits in common. "be7d557deb3a697631ea3f677b31329ee6e6773b" and "22bb490237d71bb1acfd7cc4fd544ab27c7a334b" have entirely different histories.

2 changed files with 3 additions and 12 deletions

2
.gitignore vendored
View file

@ -1,2 +0,0 @@
*.swp

View file

@ -1,19 +1,12 @@
FROM alpine:edge
LABEL maintainer="Jona Reichmann"
MAINTAINER Jona Reichmann
RUN apk update \
&& apk upgrade \
&& apk add \
curl \
jq \
openjdk8-jre
curl
jq
ADD fsRoot /
ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk/jre
ENV PATH $PATH:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
RUN ["java", "-version"]
CMD ["bash", "-c", "/opt/minecraft/entrypoint.sh"]