This is an automated email from the ASF dual-hosted git repository. asq pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-crail.git
The following commit(s) were added to refs/heads/master by this push: new 64ba8d4 Fix naming in Docker file 64ba8d4 is described below commit 64ba8d47232d47769142620917718f844429369b Author: Adrian Schuepbach <a...@apache.org> AuthorDate: Tue Jun 25 00:12:37 2019 +0200 Fix naming in Docker file The wrong naming causes the docker build to fail. This commit fixes the naming and resolves issue https://issues.apache.org/jira/browse/CRAIL-99 Close #78 Signed-off-by: Adrian Schuepbach <a...@apache.org> --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 57e381f..762406e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -43,7 +43,7 @@ RUN echo "Crail-$LOG_COMMIT clone & build Crail repo" && \ RUN echo "Move crail to /crail" && \ rm -rf /crail && \ v=`xmllint --xpath "string(/*[local-name()='project']/*[local-name()='version'])" /incubator-crail/pom.xml` && \ - mv /incubator-crail/assembly/target/crail-${v}-bin /crail + mv /incubator-crail/assembly/target/apache-crail-${v}-bin/apache-crail-${v} /crail ENV CRAIL_HOME /crail ENV PATH=${PATH}:${CRAIL_HOME}/bin