You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/06 09:45:36 UTC

[camel-k] branch main updated: chore(ci): Remove unused Dockerfile.arch

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 373e23b56 chore(ci): Remove unused Dockerfile.arch
373e23b56 is described below

commit 373e23b561ac55a7cde7bb142cafc6dc59384c21
Author: Gaelle Fournier <ga...@gmail.com>
AuthorDate: Thu Jul 6 09:41:05 2023 +0200

    chore(ci): Remove unused Dockerfile.arch
---
 build/Dockerfile.arch | 47 -----------------------------------------------
 1 file changed, 47 deletions(-)

diff --git a/build/Dockerfile.arch b/build/Dockerfile.arch
deleted file mode 100644
index 799e65da5..000000000
--- a/build/Dockerfile.arch
+++ /dev/null
@@ -1,47 +0,0 @@
-# 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 --platform=$BUILDPLATFORM ghcr.io/graalvm/graalvm-ce:ol8-java11-22.1.0
-
-ARG MAVEN_VERSION="3.8.4"
-ARG MAVEN_HOME="/usr/share/maven"
-ARG SHA="a9b2d825eacf2e771ed5d6b0e01398589ac1bfa4171f36154d1b5787879605507802f699da6f7cfc80732a5282fd31b28e4cd6052338cbef0fa1358b48a5e3c8"
-ARG BASE_URL="https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries"
-
-USER 0
-
-RUN mkdir -p ${MAVEN_HOME} \
-    && curl -Lso /tmp/maven.tar.gz ${BASE_URL}/apache-maven-${MAVEN_VERSION}-bin.tar.gz \
-    && echo "${SHA} /tmp/maven.tar.gz" | sha512sum -c - \
-    && tar -xzC ${MAVEN_HOME} --strip-components=1 -f /tmp/maven.tar.gz \
-    && rm -v /tmp/maven.tar.gz \
-    && ln -s ${MAVEN_HOME}/bin/mvn /usr/bin/mvn \
-    && rm ${MAVEN_HOME}/lib/maven-slf4j-provider*
-
-ADD build/_maven_output /tmp/artifacts/m2
-ADD build/_kamelets /kamelets
-COPY build/_maven_overlay/ /usr/share/maven/lib/
-ADD build/logback.xml /usr/share/maven/conf/
-
-ENV MAVEN_OPTS="${MAVEN_OPTS} -Dlogback.configurationFile=/usr/share/maven/conf/logback.xml"
-
-RUN chgrp -R 0 /tmp/artifacts/m2 \
-    && chmod -R g=u /tmp/artifacts/m2 \
-    && chgrp -R 0 /kamelets \
-    && chmod -R g=u /kamelets
-
-USER 1000
-
-ADD build/_output/bin/kamel /usr/local/bin/kamel