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.
18 lines
746 B
18 lines
746 B
3 years ago
|
FROM dyne/devuan:chimaera
|
||
|
# An absolute path for COPY doesn't work ('/' is removed from the beginning).
|
||
|
COPY linux-minetest-kit.zip /opt
|
||
|
COPY lmk.rc /opt
|
||
3 years ago
|
# COPY build-lmk.sh /opt
|
||
3 years ago
|
COPY install-minetest-build-deps.sh /opt
|
||
3 years ago
|
RUN apt-get update
|
||
|
RUN apt-get install -y unzip
|
||
3 years ago
|
RUN apt-get install -y perl
|
||
3 years ago
|
RUN unzip /opt/linux-minetest-kit.zip -d /opt
|
||
3 years ago
|
# RUN adduser --disabled-password --gecos "" minebest
|
||
3 years ago
|
# RUN apt-get install -y sudo
|
||
3 years ago
|
# RUN curl https://raw.githubusercontent.com/poikilos/EnlivenMinetest/master/install-minetest-build-deps.sh --output /opt/install-minetest-build-deps.sh
|
||
|
# RUN chmod +x /opt/install-minetest-build-deps.sh
|
||
3 years ago
|
RUN /opt/install-minetest-build-deps.sh
|
||
3 years ago
|
WORKDIR /opt/linux-minetest-kit
|
||
|
RUN bash -e ./mtcompile-libraries.sh build
|