summaryrefslogtreecommitdiffstats
path: root/solve/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'solve/Dockerfile')
-rw-r--r--solve/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/solve/Dockerfile b/solve/Dockerfile
new file mode 100644
index 0000000..69f2af6
--- /dev/null
+++ b/solve/Dockerfile
@@ -0,0 +1,11 @@
+FROM nginx:1.24.0
+
+RUN mkdir /etc/nginx/http
+
+COPY ./nginx.conf /etc/nginx/nginx.conf
+COPY ./join.js /etc/nginx/http
+COPY ./index.html /usr/share/nginx/html/index.html
+
+EXPOSE 1024
+
+CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file