AzerothCore complete Docker solution

Check https://github.com/azerothcore/azerothcore-wotlk/tree/master/docker for all details.
This commit is contained in:
Francesco Borzì
2019-01-12 21:48:33 +01:00
committed by GitHub
parent e7dafc18d2
commit 7bff043a1b
13 changed files with 186 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
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"]