You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2022/10/12 00:30:00 UTC

[camel-karavan] branch main updated: Fix issue not available mvnd 0.8.0

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

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new 597f4c6  Fix issue not available mvnd 0.8.0
597f4c6 is described below

commit 597f4c6b9c1221aef9923715795719ee5fd3b549
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Tue Oct 11 20:29:52 2022 -0400

    Fix issue not available mvnd 0.8.0
---
 karavan-cloud/Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/karavan-cloud/Dockerfile b/karavan-cloud/Dockerfile
index ff7b0e1..fdf17fc 100644
--- a/karavan-cloud/Dockerfile
+++ b/karavan-cloud/Dockerfile
@@ -4,12 +4,12 @@ FROM jbangdev/jbang-action:0.97.0
 RUN jbang trust add -o --fresh --quiet https://github.com/apache/camel/blob/HEAD/dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java
 
 # Add Maven Daemon
-ADD https://dist.apache.org/repos/dist/release/maven/mvnd/0.8.0/maven-mvnd-0.8.0-linux-amd64.zip .
+ADD https://dist.apache.org/repos/dist/release/maven/mvnd/0.8.2/maven-mvnd-0.8.2-linux-amd64.zip .
 
 RUN mkdir /opt/mvnd && \        
     apt-get update -y && apt-get install unzip git -y && apt-get clean && \                                
-    unzip maven-mvnd-0.8.0-linux-amd64.zip && \                       
-    mv mvnd-0.8.0-linux-amd64/* /opt/mvnd  
+    unzip maven-mvnd-0.8.2-linux-amd64.zip && \                       
+    mv mvnd-0.8.2-linux-amd64/* /opt/mvnd  
 
 WORKDIR /scripts
 ENTRYPOINT ["entrypoint", "-Dcamel.jbang.version=3.18.2", "camel@apache/camel"]