From: rick Date: Thu, 12 Jan 2023 23:25:48 +0000 (+0100) Subject: add dockerfile for testing purpose X-Git-Tag: vFR_EN~7 X-Git-Url: http://git.gyiwr.tf/?a=commitdiff_plain;h=2a366407af8b9f583bc45a94073147cb87899f11;p=gyiwr.git add dockerfile for testing purpose --- diff --git a/Dockerfile b/Dockerfile new file mode 100644 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