File tree 4 files changed +32
-5
lines changed
4 files changed +32
-5
lines changed Original file line number Diff line number Diff line change 19
19
#
20
20
# -------------------------------------------------------------
21
21
22
- FROM sebaba /testingsysds:2.0
22
+ FROM systemds /testingsysds:latest
Original file line number Diff line number Diff line change 23
23
# Build the docker containers
24
24
25
25
# The first build is for running systemds through docker.
26
- docker image build -f docker/sysds.Dockerfile -t sebaba /sysds:2.0 .
26
+ docker image build -f docker/sysds.Dockerfile -t systemds /sysds:latest .
27
27
28
28
# The second build is for testing systemds. This image installs the R dependencies needed to run the tests.
29
- docker image build -f docker/testsysds.Dockerfile -t sebaba /testingsysds:2.0 .
29
+ docker image build -f docker/testsysds.Dockerfile -t systemds /testingsysds:latest .
30
30
31
31
# The third build is python docker for systemds.
32
- docker image build -f docker/pythonsysds.Dockerfile -t sebaba /pythonsysds:2.0 .
32
+ docker image build -f docker/pythonsysds.Dockerfile -t systemds /pythonsysds:latest .
33
33
34
34
# You might want to prune the docker system afterwards using
35
- # docker system prune
35
+ # docker system prune
Original file line number Diff line number Diff line change
1
+ # /bin/bash
2
+ # -------------------------------------------------------------
3
+ #
4
+ # Licensed to the Apache Software Foundation (ASF) under one
5
+ # or more contributor license agreements. See the NOTICE file
6
+ # distributed with this work for additional information
7
+ # regarding copyright ownership. The ASF licenses this file
8
+ # to you under the Apache License, Version 2.0 (the
9
+ # "License"); you may not use this file except in compliance
10
+ # with the License. You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing,
15
+ # software distributed under the License is distributed on an
16
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17
+ # KIND, either express or implied. See the License for the
18
+ # specific language governing permissions and limitations
19
+ # under the License.
20
+ #
21
+ # -------------------------------------------------------------
22
+
23
+
24
+ docker push systemds/sysds:latest
25
+ docker push systemds/testingsysds:latest
26
+ docker push systemds/pythonsysds:latest
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ custom_install("sigmoid");
56
56
custom_install(" DescTools" );
57
57
custom_install(" mice" );
58
58
custom_install(" mclust" );
59
+ custom_install(" dbscan" );
59
60
60
61
print(" Installation Done" )
61
62
You can’t perform that action at this time.
0 commit comments