tfcache-comparison

Changes

configure 5(+4 -1)

Details

configure 5(+4 -1)

diff --git a/configure b/configure
index 260dc16..2027828 100755
--- a/configure
+++ b/configure
@@ -27,6 +27,9 @@ if [[ $type = "standalone" ]]; then
 	apt-get -qq -y install maven
 	apt-get -qq -y install git
 	apt-get -qq -y install htop
+	DEBIAN_FRONTEND=noninteractive apt-get -qq -y install r-base
+	R -e "install.packages('ggplot2')"
+	R -e "install.packages('ggforce')"
 
 	apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y
 	curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
@@ -41,4 +44,4 @@ fi
 cd adapters; bash configure $2 $3; cd ..
 cd approaches; bash configure $2 $3; cd ..
 cd applications; bash configure $2 $3; cd ..
-wait
\ No newline at end of file
+wait
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 665d032..cc614e2 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -18,6 +18,9 @@ RUN apt-get -qq -y install maven
 RUN apt-get -qq -y install git
 RUN apt-get -qq -y install curl
 RUN apt-get -qq -y install htop
+RUN DEBIAN_FRONTEND=noninteractive apt-get -qq -y install r-base
+RUN R -e "install.packages('ggplot2')"
+RUN R -e "install.packages('ggforce')"
 
 RUN apt-get -qq -y install ssh
 RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config