From 1548fc390a35cf5b0559719818f397c1ec83501d Mon Sep 17 00:00:00 2001 From: Dale Bingham Date: Thu, 18 Apr 2024 06:07:06 -0400 Subject: [PATCH] adding a privileged NGINX Dockerfile for 443 --- Dockerfile.privileged | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile.privileged diff --git a/Dockerfile.privileged b/Dockerfile.privileged new file mode 100644 index 0000000..9fd6da6 --- /dev/null +++ b/Dockerfile.privileged @@ -0,0 +1,22 @@ +FROM nginx:1.25.4 +# Fix for broken build on Docker in GH is to put RUN true between multiple COPY statements :( +RUN true +COPY *.html /usr/share/nginx/html/ +RUN true +COPY ./reports/*.html /usr/share/nginx/html/reports/ +RUN true +COPY ./js/apis.js /usr/share/nginx/html/js/apis.js +RUN true +COPY ./js/auth.js /usr/share/nginx/html/js/auth.js +RUN true +COPY ./js/jquery.blockUI.js /usr/share/nginx/html/js/jquery.blockUI.js +RUN true +COPY ./js/moment.min.js /usr/share/nginx/html/js/moment.min.js +RUN true +COPY ./js/openrmf.min.js /usr/share/nginx/html/js/openrmf.js +RUN true +COPY ./includes/ /usr/share/nginx/html/includes/ +RUN true +COPY ./assets/ /usr/share/nginx/html/assets/ +RUN true +COPY ./help/_site/ /usr/share/nginx/html/help/ \ No newline at end of file