allow configuration of auth_proxy_pass through

environment variable
This commit is contained in:
2023-10-13 16:37:05 -05:00
parent 300abb5360
commit 520c20b4d8
3 changed files with 24 additions and 23 deletions

View File

@@ -11,6 +11,7 @@ RUN npm run build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /app/eo-services
COPY nginx.conf /etc/nginx/nginx.conf
COPY default.conf.template /etc/nginx/templates/default.conf.template
COPY headers.js /etc/nginx/headers.js
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]