
* initial review for docker * update link * more typos * hight letter * it's realm.rft * realm.rtf * remove legacy code from dockerfiles * docker-compose cleanup,- documented clone the right database * add timezone to mangos.env * add more at the build command * double only * it's a script not a container * more documentation and moved into seperate folder * revert back the openssl * reformat documentation * high letter * timezone * reduce dockerfiles and add documentation * removed mangos user from build script * correct links for realmd and world * fixing small things, after railroid the documentation. * command is called restart * hold the documentation line * add the changes for realmlist.wtf Co-authored-by: AndyBe <andreas.benzler@gmail.com>
13 lines
356 B
Docker
13 lines
356 B
Docker
from ubuntu:focal
|
|
|
|
RUN apt update && apt dist-upgrade -y
|
|
# we need to setup tzdata otherwise focal ask for time zone
|
|
RUN DEBIAN_FRONTEND=noninteractive \
|
|
TZ=Europe/Berlin \
|
|
apt install -y build-essential cmake git-core libbz2-dev \
|
|
libmariadb-dev libmariadbclient-dev libmariadb-dev-compat \
|
|
libssl-dev
|
|
|
|
WORKDIR /work
|
|
|
|
ENTRYPOINT /bin/bash |