You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/04/20 12:28:50 UTC

[camel] branch main updated: CAMEL-19273 - Create and release a container image for using camel-jbang

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 288cc76bc30 CAMEL-19273 - Create and release a container image for using camel-jbang
288cc76bc30 is described below

commit 288cc76bc303ceb70a0d911fc32f2bfba524b75a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Apr 20 14:26:19 2023 +0200

    CAMEL-19273 - Create and release a container image for using camel-jbang
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 dsl/camel-jbang/camel-jbang-container/Dockerfile | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dsl/camel-jbang/camel-jbang-container/Dockerfile b/dsl/camel-jbang/camel-jbang-container/Dockerfile
new file mode 100644
index 00000000000..dae9a03a5cb
--- /dev/null
+++ b/dsl/camel-jbang/camel-jbang-container/Dockerfile
@@ -0,0 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+#  this work for additional information regarding copyright ownership.
+#  The ASF licenses this file to You under the Apache License, Version 2.0
+#  (the "License"); you may not use this file except in compliance with
+#  the License.  You may obtain a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+FROM docker.io/jbangdev/jbang-action
+
+RUN jbang trust add https://github.com/apache/camel
+    
+ENTRYPOINT [ "jbang",  "camel@apache/camel" ]
+