This is an automated email from the ASF dual-hosted git repository.
dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git
The following commit(s) were added to refs/heads/master by this push:
new 8205662 Simplifying docker build
8205662 is described below
commit 82056624b5b7a51582a5fe8f83a23b3e4258675a
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Mon Sep 26 14:03:05 2022 -0400
Simplifying docker build
---
docker/Dockerfile | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 9e22372..9d29348 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -6,19 +6,10 @@ RUN apt-get install git -y
RUN mkdir airavata
WORKDIR /airavata
-RUN git clone https://github.com/apache/airavata-custos.git
-RUN git clone https://github.com/apache/airavata-data-lake.git
RUN git clone https://github.com/apache/airavata-mft.git
-WORKDIR /airavata/airavata-custos
-RUN git checkout develop
-RUN mvn install
-
WORKDIR /airavata/airavata-mft/
-RUN ! mvn install --fail-at-end
-
-WORKDIR /airavata/airavata-data-lake/
-RUN ! mvn install --fail-at-end
+RUN mvn install
WORKDIR /airavata/airavata-mft/scripts
RUN ["./build.sh"]