This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/minecraft/papermc/Dockerfile

44 lines
1.2 KiB
Docker
Raw Permalink Normal View History

ARG BASE_IMAGE
# We use ${:-} instead of a default value because the argument is always passed
# to the build, it'll just be blank most likely
FROM ${BASE_IMAGE:-'openjdk:11-jre-slim'}
2020-12-30 12:53:37 +01:00
# Build arguments
ARG MC_VERSION
ARG PAPERMC_VERSION
2021-01-26 12:57:29 +01:00
# Install mcstatus for healthchecks
RUN apt update && \
apt install --no-install-recommends -y python3-minimal python3-setuptools python3-pip && \
python3 -m pip install mcstatus && \
apt --purge remove -y python3-pip python3-setuptools && \
apt clean
2020-12-30 12:53:37 +01:00
# Create worlds and config directory
2021-01-13 14:21:38 +01:00
WORKDIR /app
2020-12-30 12:53:37 +01:00
RUN mkdir worlds config
# Download server file
ADD "https://papermc.io/api/v1/paper/$MC_VERSION/$PAPERMC_VERSION/download" server.jar
# Store the cache in an anonymous volume, which means it won't get stored in the other volumes
2021-01-13 14:21:38 +01:00
VOLUME /app/config/cache
2020-12-30 12:53:37 +01:00
# Default value to keep users from eating up all ram accidentally
2021-01-26 13:45:30 +01:00
ENV XMX=4
ENV MC_VERSION="${MC_VERSION}"
ENV PAPERMC_VERSION="${PAPERMC_VERSION}"
2020-12-30 12:53:37 +01:00
2021-01-13 14:21:38 +01:00
# Document exposed ports
EXPOSE 25565
2021-01-26 12:57:29 +01:00
# Entrypoint runs in /app/config
COPY entrypoint.sh /entrypoint.sh
WORKDIR /app/config
ENTRYPOINT /entrypoint.sh
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
CMD mcstatus localhost:25565 ping