I installed shinyproxy using docker-compose
.
When going to my shiny app, I am running into the error:
Status code: 500
Message: Failed to start container
and when checking into error message I see:
starting container process caused "exec: \"R\": executable file not found in $PATH": unknown"}
I am not sure to understand what it means.
In case that helps, the last lines of my Shiny Dockerfile are:
EXPOSE 3838
CMD ["R", "-e", "shiny::runApp('/root/app')"]
and in my application.yml
the container-cmd
line is
container-cmd: ["R", "-e", "shiny::runApp('/root/app')"]
Do you see any wrong spelling?
Also as an FYI but don’t know if that’s useful information, I noticed there is no R folder in my folder: /usr/lib
Thanks for your help !