Minecraft: Pi Edition Modding Project
https://discord.com/invite/aDqejQGMMy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
392 B
19 lines
392 B
FROM debian:bullseye-slim |
|
|
|
# Install |
|
RUN \ |
|
apt-get update && \ |
|
apt-get install -y tini sed patchelf qemu-user && \ |
|
apt-get --fix-broken install -y && \ |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
# Copy |
|
ADD ./out/server-amd64 /app |
|
|
|
# Setup Working Directory |
|
RUN mkdir /data |
|
WORKDIR /data |
|
|
|
# Setup Entrypoint |
|
ENTRYPOINT ["/usr/bin/tini", "--"] |
|
CMD ["/app/usr/bin/minecraft-pi-reborn-server"]
|
|
|