vintagestorydocker/Dockerfile
2025-03-29 11:48:47 +01:00

14 lines
302 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:7.0
WORKDIR /vintagestory
ADD ./entry.sh .
RUN chmod +x ./entry.sh
VOLUME ["/data"]
EXPOSE 42420/tcp
EXPOSE 42420/udp
# TODO: Allow parameter customization?
# https://wiki.vintagestory.at/Special:MyLanguage/Server_startup_parameters
CMD ["/vintagestory/entry.sh"]