mirror of
https://github.com/Merith-TK/docker-vintagestory
synced 2025-01-18 22:30:27 +00:00
10 lines
373 B
Docker
10 lines
373 B
Docker
# ============== 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}"
|