From 6cbe1c4a0024505dc4f00f524b9ecbecd0d2d0c0 Mon Sep 17 00:00:00 2001 From: Trey Yoder Date: Sat, 20 Jan 2024 11:25:42 -0500 Subject: [PATCH] Switch quakejs branch to master --- Dockerfile | 2 +- docker-compose.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile index 59243f7..01d4be8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get install sudo curl git nodejs npm jq apache2 wget apt-utils -y RUN curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - -RUN git clone --branch fix_module https://github.com/nerosketch/quakejs.git +RUN git clone https://github.com/nerosketch/quakejs.git WORKDIR /quakejs RUN npm install RUN ls diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..46bce15 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: '2' +services: + quakejs: + container_name: quakejs + environment: + - HTTP_PORT=8080 + ports: + - '8080:80' + - '27960:27960' + image: 'treyyoder/quakejs:latest' \ No newline at end of file