From bafe12cb41a9db637b96228f8369b7986421ce1e Mon Sep 17 00:00:00 2001 From: glmdev Date: Thu, 2 May 2019 11:52:49 -0500 Subject: [PATCH] add pandas container demo --- container/Dockerfile | 4 +--- container/install_snow.R | 7 ------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 container/install_snow.R diff --git a/container/Dockerfile b/container/Dockerfile index 2471e53..bc940bb 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -1,5 +1,3 @@ FROM glmdev/k8s-hpc-demo:latest -COPY install_snow.R /tmp/install_snow.R - -RUN R --vanilla -f /tmp/install_snow.R +RUN pip3 install pandas diff --git a/container/install_snow.R b/container/install_snow.R deleted file mode 100644 index f99fa51..0000000 --- a/container/install_snow.R +++ /dev/null @@ -1,7 +0,0 @@ -CRAN <- "http://rweb.crmda.ku.edu/cran" -KRAN <- "http://rweb.crmda.ku.edu/kran" -BIOC <- "http://www.bioconductor.org/packages/3.3/bioc" - -options(repos = c(KRAN, CRAN, BIOC)) - -install.packages("snow")