Files
yolks/games/minetest/Dockerfile
T
Kyle Speight 5a71b67076 update
2025-09-09 01:46:09 -07:00

21 lines
801 B
Docker

LABEL author="Kyle Speight" maintainer="kyle@kyle-hosting.xyz"
LABEL org.opencontainers.image.source="https://github.com/kylehost/yolks"
LABEL org.opencontainers.image.licenses=MIT
FROM --platform=$TARGETOS/$TARGETARCH ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update -y \
&& apt install -y curl ca-certificates openssl git tar gnupg2 sqlite3 fontconfig tzdata iproute2 libfreetype6 software-properties-common \
&& useradd -d /home/container -m container
RUN add-apt-repository -y ppa:minetestdevs/stable
RUN apt update && apt -y install minetest
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]