ShinyProxy Application Demo Error

I am trying to build a dockerfile for a Euler App to test ShinyProxy via “http://www.shinyproxy.io/deploying-apps/

Upon using the command sudo docker build -t openanalytics/shinyproxy-template .

I get an error while the build is processing that:

Error: unexpected end of input
Execution halted
The command '/bin/sh -c R -e "install.packages(c('shiny', 'rmarkdown', repos='https://cloud.r-project.org/')" ' returned a non-zero code: 1.

I am curious why I am getting this error as this is the same exact command from the dockerfile.

What can I do to resolve this.

-Thanks

1 Like

We are also seeing this exact error

Found the issue C:

It seems they forgot to close the parenthesis

correct syntax should be :slight_smile:
RUN R -e "install.packages(c('shiny', 'rmarkdown', repos='https://cloud.r-project.org/'))"

Thanks for discovering the typo! it will be soon fixed.

To be precise, correct syntax should be:
RUN R -e "install.packages(c('shiny', 'rmarkdown'), repos='https://cloud.r-project.org/')"

@Babacar_Diouf @scottstensland typo fixed now. Thanks!