mirror of
https://gitcode.com/GitHub_Trending/az/azerothcore-wotlk.git
synced 2026-07-11 03:13:10 +00:00
8 lines
294 B
Docker
8 lines
294 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;
|
|
|
|
# run the authserver located in the directory "docker/authserver/bin" of the host machine
|
|
CMD ["/azeroth-server/bin/authserver"]
|