Skip to content

Instantly share code, notes, and snippets.

@voroninman
Last active October 22, 2017 17:35
Show Gist options
  • Save voroninman/02ea6d822a205f8b42b0bad52a1b991e to your computer and use it in GitHub Desktop.
Save voroninman/02ea6d822a205f8b42b0bad52a1b991e to your computer and use it in GitHub Desktop.
# 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