From e801b26c102a82f5a856cd07545f65ed71519b6e Mon Sep 17 00:00:00 2001 From: radex Date: Fri, 2 Feb 2024 21:48:39 +0100 Subject: [PATCH] add dockerfile --- Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..86c78d0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +# runtime image (static server) +FROM nginxinc/nginx-unprivileged:latest as runtime + +WORKDIR /usr/share/nginx/html/ + +COPY audio audio +COPY help help +COPY images images +COPY lib lib +COPY localization localization +COPY src src +COPY styles styles + +COPY about.html . +COPY browserconfig.xml . +COPY favicon.ico . +COPY index.html . +COPY manifest.webmanifest .