* schematic rotation * fixes * remove auto-rotation code * schematic encoding v2 * testing * working encode/decode * rotate schematic * spec * rotate dialog * skip if rotation == 0 * wip * wip * wip * fix order * fix metadata rotation --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
13 lines
478 B
Docker
13 lines
478 B
Docker
ARG ENGINE_VERSION=5.7.0
|
|
FROM registry.gitlab.com/minetest/minetest/server:${ENGINE_VERSION}
|
|
|
|
USER root
|
|
|
|
RUN apk add --no-cache lua-dev luarocks
|
|
|
|
RUN apk add git &&\
|
|
mkdir -p /root/.minetest/worlds/world/worldmods/ &&\
|
|
git clone https://github.com/BuckarooBanzay/mtt /root/.minetest/worlds/world/worldmods/mtt &&\
|
|
git clone https://github.com/mt-mods/wield_events /root/.minetest/worlds/world/worldmods/wield_events
|
|
|
|
ENTRYPOINT minetestserver --config /minetest.conf |