This is an automated email from the ASF dual-hosted git repository.

baunsgaard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 7af2ae0  [MINOR] Update docker images organization
7af2ae0 is described below

commit 7af2ae04f28ddcb36158719a25a7fa34b22d3266
Author: baunsgaard <baunsga...@tugraz.at>
AuthorDate: Sat Aug 8 09:46:41 2020 +0200

    [MINOR] Update docker images organization
    
    Changes the docker images to use the docker organization systemds
    add install dependency for R dbScan
    Change the tests to use the new organizations docker images
    
    Closes #1008
---
 .github/action/Dockerfile                   | 2 +-
 docker/build.sh                             | 8 ++++----
 .github/action/Dockerfile => docker/push.sh | 6 +++++-
 src/test/scripts/installDependencies.R      | 1 +
 4 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/.github/action/Dockerfile b/.github/action/Dockerfile
index 36420da..7e82474 100644
--- a/.github/action/Dockerfile
+++ b/.github/action/Dockerfile
@@ -19,4 +19,4 @@
 #
 #-------------------------------------------------------------
 
-FROM sebaba/testingsysds:2.0
+FROM systemds/testingsysds:latest
diff --git a/docker/build.sh b/docker/build.sh
index 643813e..9655ba0 100755
--- a/docker/build.sh
+++ b/docker/build.sh
@@ -23,13 +23,13 @@
 # Build the docker containers
 
 # The first build is for running systemds through docker.
-docker image build -f docker/sysds.Dockerfile -t sebaba/sysds:2.0 .
+docker image build -f docker/sysds.Dockerfile -t systemds/sysds:latest .
 
 # The second build is for testing systemds. This image installs the R 
dependencies needed to run the tests.
-docker image build -f docker/testsysds.Dockerfile -t sebaba/testingsysds:2.0 .
+docker image build -f docker/testsysds.Dockerfile -t 
systemds/testingsysds:latest .
 
 # The third build is python docker for systemds. 
-docker image build -f docker/pythonsysds.Dockerfile -t sebaba/pythonsysds:2.0 .
+docker image build -f docker/pythonsysds.Dockerfile -t 
systemds/pythonsysds:latest .
 
 # You might want to prune the docker system afterwards using
-# docker system prune
\ No newline at end of file
+# docker system prune
diff --git a/.github/action/Dockerfile b/docker/push.sh
old mode 100644
new mode 100755
similarity index 87%
copy from .github/action/Dockerfile
copy to docker/push.sh
index 36420da..b669c91
--- a/.github/action/Dockerfile
+++ b/docker/push.sh
@@ -1,3 +1,4 @@
+#/bin/bash 
 #-------------------------------------------------------------
 #
 # Licensed to the Apache Software Foundation (ASF) under one
@@ -19,4 +20,7 @@
 #
 #-------------------------------------------------------------
 
-FROM sebaba/testingsysds:2.0
+
+docker push systemds/sysds:latest
+docker push systemds/testingsysds:latest
+docker push systemds/pythonsysds:latest
diff --git a/src/test/scripts/installDependencies.R 
b/src/test/scripts/installDependencies.R
index 4696361..2198b6e 100644
--- a/src/test/scripts/installDependencies.R
+++ b/src/test/scripts/installDependencies.R
@@ -56,6 +56,7 @@ custom_install("sigmoid");
 custom_install("DescTools");
 custom_install("mice");
 custom_install("mclust");
+custom_install("dbscan");
 
 print("Installation Done")
 

Reply via email to