From 5178f09b8b7353fe3e68834831b2fa92e2ba3865 Mon Sep 17 00:00:00 2001 From: weli-l <1289113577@qq.com> Date: Mon, 25 Nov 2024 11:35:50 +0800 Subject: [PATCH] add dockerfile for Kmesh Signed-off-by: weli-l <1289113577@qq.com> --- Kmesh.dockerfile | 8 ++++++++ Kmesh.spec | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 Kmesh.dockerfile diff --git a/Kmesh.dockerfile b/Kmesh.dockerfile new file mode 100644 index 0000000..7bd69d8 --- /dev/null +++ b/Kmesh.dockerfile @@ -0,0 +1,8 @@ +FROM openeuler/openeuler:24.03 + +WORKDIR /kmesh + +RUN \ + yum install -y kmod util-linux iptables Kmesh && \ + mkdir -p /usr/share/oncn-mda && \ + mkdir -p /etc/oncn-mda \ No newline at end of file diff --git a/Kmesh.spec b/Kmesh.spec index bd4bb6b..8c125a3 100644 --- a/Kmesh.spec +++ b/Kmesh.spec @@ -1,7 +1,7 @@ %global codepath kmesh Name: Kmesh Version: 0.4.1 -Release: 1 +Release: 2 Summary: %{name} is a eBPF-based service mesh kernel solution License: ASL 2.0 and GPL-2.0 URL: https://github.com/kmesh-net @@ -121,6 +121,9 @@ rm -rf %{buildroot} %attr(0500,root,root) /kmesh/start_kmesh.sh %changelog +* Mon Nov 25 2024 weli-l<1289113577@qq.com> - 0.4.1-2 +- add dockerfile for Kmesh + * Mon Sep 02 2024 weli-l<1289113577@qq.com> - 0.4.1-1 - init Kmesh 0.4.1 -- Gitee