From f440e2f4761d5bf235d9cbdbc90c0dec98de9f10 Mon Sep 17 00:00:00 2001 From: GuangJie1 Date: Wed, 21 May 2025 14:48:47 +0800 Subject: [PATCH] basic apps --- Others/canal/1.1.8/24.03-lts-sp1/Dockerfile | 14 ++++++++++++++ Others/canal/meta.yml | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 Others/canal/1.1.8/24.03-lts-sp1/Dockerfile create mode 100644 Others/canal/meta.yml diff --git a/Others/canal/1.1.8/24.03-lts-sp1/Dockerfile b/Others/canal/1.1.8/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..8d5ca76e --- /dev/null +++ b/Others/canal/1.1.8/24.03-lts-sp1/Dockerfile @@ -0,0 +1,14 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} +ARG VERSION=canal-1.1.8 + +RUN dnf update -y \ + && dnf install -y git maven \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +RUN git clone -b ${VERSION} --depth 1 https://github.com/alibaba/canal.git \ + && cd canal \ + && mvn clean install -DskipTests=true + +CMD ["bash"] \ No newline at end of file diff --git a/Others/canal/meta.yml b/Others/canal/meta.yml new file mode 100644 index 00000000..b67b7f34 --- /dev/null +++ b/Others/canal/meta.yml @@ -0,0 +1,2 @@ +1.1.8-oe2403sp1: + path: 1.1.8/24.03-lts-sp1/Dockerfile -- Gitee