dockercraft/Dockerfile
Jeremy McClure ec9c48ac68
All checks were successful
Docker Build and Push / build (push) Successful in 1m5s
remove references to old script
2025-03-30 00:46:48 -04:00

38 lines
804 B
Docker

FROM ubuntu:noble
ARG UID=1000
ARG GID=1000
ENV DEBIAN_FRONTEND=noninteractive
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# install prerequisites
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl \
ca-certificates \
jq \
libxml2-utils \
sudo \
tini && \
apt-get autoremove && apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Remove default ubuntu user
RUN userdel -r ubuntu && \
useradd --create-home -u 1000 minecraft && \
echo 'minecraft ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers && \
mkdir -p /data && \
chown -R ${UID}:${GID} /data
RUN su -c "curl -sL https://github.com/Jabba-Team/jabba/raw/main/install.sh | bash && . ~/.jabba/jabba.sh" minecraft
COPY ./scripts/init /
RUN chmod +x /init
USER minecraft
ENTRYPOINT ["tini", "--", "/init"]