ConanServerManager/docker_images/latest/Dockerfile

19 lines
No EOL
513 B
Docker

FROM debian:latest
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get install -y gnupg2 numactl tzdata software-properties-common libntlm0 winbind xvfb xauth python3 libncurses5:i386 libncurses6:i386 libsdl2-2.0-0 libsdl2-2.0-0:i386
FROM git.zontreck.com/ariascreations/conanservermanager:stable
COPY ./entrypoint.sh /entrypoint.sh
EXPOSE 25306/tcp
EXPOSE 7777/tcp
EXPOSE 7777/udp
EXPOSE 7778/udp
EXPOSE 7779/tcp
EXPOSE 7779/udp
EXPOSE 7780/tcp
EXPOSE 7780/udp
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]