mirror of
https://git.phreedom.club/localhost_frssoft/fediauth.git
synced 2024-11-16 13:13:17 +00:00
11 lines
335 B
Docker
11 lines
335 B
Docker
|
ARG ENGINE_VERSION=5.6.1
|
||
|
FROM registry.gitlab.com/minetest/minetest/server:${ENGINE_VERSION}
|
||
|
|
||
|
USER root
|
||
|
|
||
|
RUN apk add git &&\
|
||
|
mkdir -p /root/.minetest/worlds/world/worldmods/ &&\
|
||
|
cd /root/.minetest/worlds/world/worldmods/ &&\
|
||
|
git clone https://github.com/BuckarooBanzay/mtt
|
||
|
|
||
|
ENTRYPOINT minetestserver --config /minetest.conf
|