add dockerfile for testing purpose
authorrick <rick@gnous.eu>
Thu, 12 Jan 2023 23:25:48 +0000 (00:25 +0100)
committerrick <rick@gnous.eu>
Thu, 12 Jan 2023 23:25:48 +0000 (00:25 +0100)
Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..9852570
--- /dev/null
@@ -0,0 +1,14 @@
+FROM nginx
+
+WORKDIR /app
+COPY generate.sh .
+COPY lang/ lang/
+COPY img/ img/
+COPY css/ css/
+COPY header.html .
+COPY footer.html .
+
+RUN ./generate.sh -o
+
+COPY www /usr/share/nginx/html
+EXPOSE 80