From c7f594e90a5580e30416fd1b4d994d242431141e Mon Sep 17 00:00:00 2001 From: Arnold Kochari Date: Tue, 9 Jan 2024 16:51:10 +0100 Subject: [PATCH] prevent squashing the file system when copying app files --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c64dec..617be97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN Rscript -e 'install.packages(c("shiny","tidyverse","BiocManager"))' RUN Rscript -e 'BiocManager::install(c("Biostrings"),ask = F)' RUN rm -rf /srv/shiny-server/* -COPY /app/* /srv/shiny-server/ +COPY /app/ /srv/shiny-server/ USER shiny