From 134c74bf8a6e8f878d412b577f62c6a89658ab35 Mon Sep 17 00:00:00 2001 From: Tim Anderegg Date: Mon, 14 Nov 2022 16:19:12 -0500 Subject: [PATCH] Ensure only main app is added to image. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9696d82..e55df5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,8 @@ RUN R -e 'install.packages(c(\ repos="https://packagemanager.rstudio.com/cran/__linux__/focal/2022-09-02"\ )' -COPY ./app/* /srv/shiny-server/ +COPY ./app/app.R /srv/shiny-server/ +COPY ./app/www /srv/shiny-server/www EXPOSE 3838