projects
/
gyiwr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8657041
)
add dockerfile for testing purpose
author
rick
<rick@gnous.eu>
Thu, 12 Jan 2023 23:25:48 +0000
(
00:25
+0100)
committer
rick
<rick@gnous.eu>
Thu, 12 Jan 2023 23:25:48 +0000
(
00:25
+0100)
Dockerfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Dockerfile
b/Dockerfile
new file mode 100644
(file)
index 0000000..
9852570
--- /dev/null
+++ b/
Dockerfile
@@ -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