Last active
October 22, 2017 17:35
-
-
Save voroninman/02ea6d822a205f8b42b0bad52a1b991e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://hub.docker.com/r/voroninman/quakejs-server/ | |
FROM node:latest | |
WORKDIR /quakejs | |
RUN git clone https://github.com/inolen/quakejs.git . | |
RUN npm install | |
RUN ln -s /quakejs/base/baseq3/server.cfg /server.cfg | |
EXPOSE 27960 | |
ENTRYPOINT node build/ioq3ded.js +set fs_game baseq3 +set dedicated 2 +exec server.cfg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment