docker-vintagestory/build-custom-example/Dockerfile

11 lines
373 B
Text
Raw Normal View History

2020-07-24 07:53:22 +01:00
# ============== runtime stage ==================
FROM devidian/vintagestory:latest as runtime
WORKDIR /game
# update with your own serverconfig
COPY "./serverconfig.json" "/gamedata/${VSDATAPATH}/serverconfig.json"
# CMD [ "mono" , "VintagestoryServer.exe", "--dataPath", "/gamedata/${VSDATAPATH}" ]
CMD mono VintagestoryServer.exe --dataPath "/gamedata/${VSDATAPATH}"