From 4211c8d3a4625419a35355d026f37e9376ef5ab6 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Thu, 4 Feb 2021 13:34:53 +0100 Subject: [PATCH] First PWA Dockerfile Former-commit-id: 01e793a9291c59ae25d944466393e0c52a4b409a [formerly a7440ebcb2610ffe248407990e033e8d1803ac2b [formerly dd43bac8b61738b47ccebc41ca2962f551012cbf]] Former-commit-id: bca495e1b06b07c95d4f4ec9dd7da952f825c3b4 Former-commit-id: caae769f173240ada5db892a46f4dba93a5a6eb9 --- Dockerfile.pwa | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile.pwa diff --git a/Dockerfile.pwa b/Dockerfile.pwa new file mode 100644 index 00000000..f813826b --- /dev/null +++ b/Dockerfile.pwa @@ -0,0 +1,11 @@ +FROM nginx:latest + +EXPOSE 80 + +COPY ./manifest.json /usr/share/nginx/html +COPY ./pwabuilder-sw.js /usr/share/nginx/html +COPY index.html /usr/share/nginx/html +COPY CHANGELOG.md /usr/share/nginx/html +COPY LICENSE /usr/share/nginx/html +COPY www /usr/share/nginx/html/www +COPY archives/README.md /usr/share/nginx/html/archives/README.md \ No newline at end of file