I am running jupyter notebook inside a ASP.NET docker container after installing all dependencies. I do reverse proxy to this container from NGINX docker container which is my localhost. Without docker I can see the jupyter notebook coming up. However when I try to load an Ipynb file using a UI(in the application), I get the below error in docker logs.
As I understand it is not able to figure out the static files. The NGINX url is supposed to be:
https://<base url>/jnb/ 404 GET /notebooks/code/Functions_Introduction.ipynb (172.26.0.2) 18.84ms referer= 404 GET /static/components/jquery-typeahead/dist/jquery.typeahead.min.css?v=7afb461de36accb1aa133a1710f5bc56 (172.26.0.2) 1.11ms referer= 404 GET /static/components/jquery-ui/themes/smoothness/jquery-ui.min.css?v=9b2c8d3489227115310662a343fce11c (172.26.0.2) 0.86ms referer= 404 GET /static/style/style.min.css?v=29c09309dd70e7fe93378815e5f022ae (172.26.0.2) 1.04ms referer= 404 GET /custom/custom.css (172.26.0.2) 1.02ms referer= 404 GET / (172.26.0.2) 1.02ms referer=None 404 GET /static/components/es6-promise/promise.min.js?v=f004a16cb856e0ff11781d01ec5ca8fe (172.26.0.2) 1.06ms referer= 404 GET /static/components/preact/index.js?v=5b98fce8b86ce059de89f9e728e16957 (172.26.0.2) 0.85ms referer= 404 GET /static/components/proptypes/index.js?v=c40890eb04df9811fcc4d47e53a29604 (172.26.0.2) 1.05ms referer= 404 GET /static/components/preact-compat/index.js?v=d376eb109a00b9b2e8c0d30782eb6df7 (172.26.0.2) 1.10ms referer= 404 GET /static/components/requirejs/require.js?v=6da8be361b9ee26c5e721e76c6d4afce (172.26.0.2) 1.07ms referer= 404 GET /static/base/images/logo.png?v=641991992878ee24c6f3826e81054a0f (172.26.0.2) 0.86ms referer= 404 GET /static/components/jquery-ui/themes/smoothness/jquery-ui.min.css?v=9b2c8d3489227115310662a343fce11c (172.26.0.2) 1.11ms referer= 404 GET /static/components/jquery-typeahead/dist/jquery.typeahead.min.css?v=7afb461de36accb1aa133a1710f5bc56 (172.26.0.2) 0.84ms referer= 404 GET /static/style/style.min.css?v=29c09309dd70e7fe93378815e5f022ae (172.26.0.2) 0.78ms referer= 404 GET /custom/custom.css (172.26.0.2) 0.74ms referer=I also installed nodejs in conda but that did not help. I could see Jupyter notebook running internally inside the container.