mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* Add devcontainer support * Rename default values for eqemu_config * Move devcontainer files to devcontainer
9 lines
746 B
Docker
9 lines
746 B
Docker
# This is a "dev" image for running eqemu in development, also for dev containers
|
|
ARG USERNAME=user-name-goes-here
|
|
ARG USER_UID=1000
|
|
ARG USER_GID=$USER_UID
|
|
|
|
FROM mcr.microsoft.com/devcontainers/base:debian
|
|
RUN sudo apt update && sudo apt install -y --no-install-recommends build-essential libtool cmake curl debconf-utils git libluabind-dev libsodium-dev liblua5.2-0 liblua5.2-dev libmariadb-dev libssl-dev minizip make mariadb-client locales nano open-vm-tools unzip uuid-dev iputils-ping wget libcurl4-openssl-dev gdb libyaml-cpp-dev ccache ninja-build pv mariadb-server libperl-dev libjson-perl libio-stringy-perl liblua5.1-dev libluabind-dev libboost-dev mariadb-server valgrind telnet libgoogle-perftools-dev google-perftools
|
|
|
|
USER $USERNAME |