mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
Check https://github.com/azerothcore/azerothcore-wotlk/tree/master/docker for all details.
12 lines
421 B
Docker
12 lines
421 B
Docker
FROM ubuntu:bionic
|
|
|
|
COPY --from=azerothcore/build:latest /azeroth-server /azeroth-server
|
|
COPY authserver.conf.dist /azeroth-server/etc/authserver.conf
|
|
COPY authserver.conf /azeroth-server/etc/authserver.conf
|
|
|
|
RUN apt update && apt install -y libmysqlclient-dev libssl-dev libace-6.* libace-dev; \
|
|
rm /azeroth-server/etc/worldserver.conf.dist; \
|
|
mkdir /azeroth-server/logs;
|
|
|
|
CMD ["/azeroth-server/bin/authserver"]
|