diff --git a/DockerfileDeployShinyApps b/DockerfileDeployShinyApps index cacdebe..63794c7 100644 --- a/DockerfileDeployShinyApps +++ b/DockerfileDeployShinyApps @@ -5,7 +5,7 @@ RUN apt update && apt install -y libjq-dev libv8-dev libgdal-dev libgeos-c1v5 li RUN mkdir /data COPY unemploymentDataProcessor.R app.R filemanifest.txt config.yml helper.R deployShinyApps.R /Rscripts/ -COPY www/CLS-Logo_120.png /Rscripts/www/ +COPY www /Rscripts/www/ COPY data /data/ # /data should be a volume mount, where the dataprocessor will write. diff --git a/app.R b/app.R index eeea7b1..a26ea74 100644 --- a/app.R +++ b/app.R @@ -115,7 +115,7 @@ ui <- fluidPage( label="Constant y axis? (makes comparisons easier)", value=FALSE), - tags$img(src="CLS-Logo_120.png"), + tags$img(src="CLS-Logo_TCF.png"), # the width of the sidebar panel width=3), diff --git a/filemanifest.txt b/filemanifest.txt index 474934c..eece37c 100644 --- a/filemanifest.txt +++ b/filemanifest.txt @@ -8,4 +8,6 @@ data/UI Data 1-2017.zip data/EUC-1982-1987-USDOLData.csv data/unemployment_data.parquet www/CLS-Logo_120.png -config.yml \ No newline at end of file +www/CLS-Logo_TCF.png +www/histy.png +config.yml diff --git a/www/CLS-Logo_TCF.png b/www/CLS-Logo_TCF.png new file mode 100644 index 0000000..bc66a93 Binary files /dev/null and b/www/CLS-Logo_TCF.png differ diff --git a/www/histy.png b/www/histy.png new file mode 100644 index 0000000..b0a1719 Binary files /dev/null and b/www/histy.png differ