add dockerfile for testing purpose

This commit is contained in:
rick 2023-01-13 00:25:48 +01:00
parent 86570414b7
commit 2a366407af
Signed by: Rick
GPG key ID: 4A6223D66294EB20

14
Dockerfile Normal file
View file

@ -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