From a358362b0b5ed625038dab5ad548974fea913b47 Mon Sep 17 00:00:00 2001 From: Jan Wijffels Date: Thu, 25 Apr 2024 13:57:11 +0200 Subject: [PATCH] move rprofile to blackbar user --- apps/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Dockerfile b/apps/Dockerfile index 9dc8780..1e5d9b3 100644 --- a/apps/Dockerfile +++ b/apps/Dockerfile @@ -23,7 +23,6 @@ RUN apt update -qq \ && apt-get autoremove -y --quiet \ && apt-get clean --quiet \ && rm -rf /var/lib/apt/lists/* -RUN echo "\noptions(shiny.port = 3838, shiny.host = '0.0.0.0')" >> /usr/local/lib/R/etc/Rprofile.site ## ## User blackbar @@ -33,5 +32,6 @@ RUN useradd -c 'shiny' --uid 1000 --gid 1000 --create-home --home-dir /home/blac USER blackbar WORKDIR /home/blackbar EXPOSE 3838 +RUN echo "\noptions(shiny.port = 3838, shiny.host = '0.0.0.0')" >> /home/blackbar/Rprofile CMD bash