29 lines
887 B
Docker
29 lines
887 B
Docker
FROM thallian/confd-env:latest
|
|
|
|
RUN addgroup minecraft -g 2222
|
|
RUN adduser -u 2222 -h /var/lib/minecraft -D -G minecraft minecraft
|
|
|
|
ENV VERSION=1.17.1
|
|
ENV SERIAL=400
|
|
ENV SHA256_SUM=3b8ea78e28f5f5224ef692762e36150e16c352e9159f6cb00db466a0de787f38
|
|
RUN wget -O /var/lib/minecraft/paper.jar \
|
|
https://papermc.io/api/v2/projects/paper/versions/$VERSION/builds/$SERIAL/downloads/paper-$VERSION-$SERIAL.jar
|
|
|
|
RUN echo "$SHA256_SUM /var/lib/minecraft/paper.jar" | sha256sum -c - || exit 1
|
|
|
|
RUN apk add --no-cache \
|
|
openssl
|
|
|
|
RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
|
|
openjdk17-jre-headless
|
|
|
|
RUN mkdir -p /etc/services.d/minecraft/
|
|
|
|
ADD /rootfs /
|
|
|
|
RUN chown -R minecraft:minecraft /var/lib/minecraft
|
|
|
|
VOLUME /var/lib/minecraft/world /var/lib/minecraft/world_nether /var/lib/minecraft/world_the_end /var/lib/minecraft/plugins
|
|
|
|
EXPOSE 25565
|