From ab83b416ac1e7ca8a759b74f244b1cf3e627fe3d Mon Sep 17 00:00:00 2001 From: Giulio Benedetti Date: Sat, 10 Aug 2024 09:05:05 +0300 Subject: [PATCH] Fix package installation in image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3c7055e..eb220b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /srv/shiny-server COPY . . # Install R dependencies from the DESCRIPTION file -RUN R -e "install.packages(c('remotes', BiocManager'))" +RUN R -e "install.packages(c('remotes', 'BiocManager'))" RUN R -e "remotes::install_local(dependencies = TRUE, upgrade = TRUE)" # Expose the application port