From dc7f8fcd7e0377cbef3e6cb22e535da40eeabf90 Mon Sep 17 00:00:00 2001 From: kayos Date: Fri, 6 Mar 2026 01:07:34 -0800 Subject: [PATCH] fulfillment: add python3, copy fulfillment.py into image --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ac987a..40c60ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,19 +4,18 @@ FROM eclipse-temurin:21-jdk LABEL version="5.5" - -RUN apt-get update && apt-get install -y curl unzip jq && \ +RUN apt-get update && apt-get install -y curl unzip jq python3 && \ adduser --uid 99 --gid 100 --home /data --disabled-password minecraft COPY launch.sh /launch.sh -RUN chmod +x /launch.sh +COPY fulfillment.py /fulfillment.py +RUN chmod +x /launch.sh /fulfillment.py USER minecraft VOLUME /data WORKDIR /data - + EXPOSE 25565/tcp CMD ["/launch.sh"] -