mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
8 lines
313 B
Docker
8 lines
313 B
Docker
FROM ubuntu:bionic
|
|
|
|
# install the required dependencies to run the authserver
|
|
RUN apt update && apt install -y libmysqlclient-dev libssl-dev libace-6.* libace-dev libreadline-dev;
|
|
|
|
# run the worldserver located in the directory "docker/worldserver/bin" of the host machine
|
|
CMD ["/azeroth-server/bin/worldserver"]
|