Hello,
I tried to build the image myself and use it with ShinyProxy, but it does not work. More precisely, I am testing locally with shinyproxy-2.6.1 (as a .jar) and I have the following error message:

It is worth noting, however, that everything works fine with your image openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2 and the same configurations in the application.yml:
# BUILT FROM SOURCE -- DOES NOT WORK
- id: rstudio_custom
display-name: RStudio Custom
container-image: rstudio:4.1.2
port: '8787'
container-env:
DISABLE_AUTH: true
WWW_ROOT_PATH: "#{proxy.getRuntimeValue('SHINYPROXY_PUBLIC_PATH')}"
# PULLED FROM DOCKERHUB -- WORKS
- id: rstudio_openanalytics
display-name: RStudio (ShinyProxy official image)
container-image: openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2
port: '8787'
container-env:
DISABLE_AUTH: true
WWW_ROOT_PATH: "#{proxy.getRuntimeValue('SHINYPROXY_PUBLIC_PATH')}"
The Dockerfile I used was the default one in the main branch, just without the comments:
FROM rocker/rstudio:4.1.2
RUN echo "www-frame-origin=same" >> /etc/rstudio/disable_auth_rserver.conf
RUN echo "www-verify-user-agent=0" >> /etc/rstudio/disable_auth_rserver.conf
ADD 03_setup_root_path.sh /etc/cont-init.d/03_setup_root_path.sh
Can you reproduce the error? Do you have any idea why I can't use the image I am building myself?
By the way, while trying to understand the problem, I compared the image history of openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2 with the image history of rocker/rstudio:4.1.2. Other than the three lines we add in the Dockerfile after the FROM ..., there are other differences. In particular, we invoke the files /rocker_scripts/install_R.sh and /rocker_scripts/patch_install_command.sh which do not exist in rocker-versioned2/scripts (where /rocker_scripts/ is a directory in the container that is copied from a local scripts/ directory in the Dockerfile, so I wonder this scripts/ would be the rocker one).
Would these two missing files consist of custom scripts you made and without which we cannot have an image compatible with ShinyProxy?
Hello,
I tried to build the image myself and use it with ShinyProxy, but it does not work. More precisely, I am testing locally with shinyproxy-2.6.1 (as a .jar) and I have the following error message:

It is worth noting, however, that everything works fine with your image
openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2and the same configurations in theapplication.yml:The Dockerfile I used was the default one in the
mainbranch, just without the comments:Can you reproduce the error? Do you have any idea why I can't use the image I am building myself?
By the way, while trying to understand the problem, I compared the image history of openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2 with the image history of rocker/rstudio:4.1.2. Other than the three lines we add in the Dockerfile after the
FROM ..., there are other differences. In particular, we invoke the files/rocker_scripts/install_R.shand/rocker_scripts/patch_install_command.shwhich do not exist in rocker-versioned2/scripts (where/rocker_scripts/is a directory in the container that is copied from a localscripts/directory in the Dockerfile, so I wonder thisscripts/would be the rocker one).Would these two missing files consist of custom scripts you made and without which we cannot have an image compatible with ShinyProxy?