From 12e101e74f9ba2a0de4e84d69771f0ca12af8fec Mon Sep 17 00:00:00 2001 From: GuangJie1 Date: Wed, 21 May 2025 14:33:09 +0800 Subject: [PATCH] basic apps --- Others/busybox/1.37.0/24.03-lts-sp1/Dockerfile | 18 ++++++++++++++++++ Others/busybox/meta.yml | 3 +++ 2 files changed, 21 insertions(+) create mode 100644 Others/busybox/1.37.0/24.03-lts-sp1/Dockerfile create mode 100644 Others/busybox/meta.yml diff --git a/Others/busybox/1.37.0/24.03-lts-sp1/Dockerfile b/Others/busybox/1.37.0/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000..d1ec43f --- /dev/null +++ b/Others/busybox/1.37.0/24.03-lts-sp1/Dockerfile @@ -0,0 +1,18 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} as BUILDER +ARG VERSION=1.37.0 + +RUN dnf update -y \ + && dnf install -y gcc make wget findutils diffutils \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +RUN wget https://busybox.net/downloads/busybox-${VERSION}.tar.bz2 \ + && tar -jxvf busybox-${VERSION}.tar.bz2 \ + && cd busybox-${VERSION} \ + && make allnoconfig \ + && make CONFIG_PREFIX=/usr/local/busybox install + +ENV PATH /usr/local/busybox/bin:$PATH + +CMD ["busybox"] diff --git a/Others/busybox/meta.yml b/Others/busybox/meta.yml new file mode 100644 index 0000000..4c84005 --- /dev/null +++ b/Others/busybox/meta.yml @@ -0,0 +1,3 @@ +1.37.0-oe2403sp1: + path: 1.37.0/24.03-lts-sp1/Dockerfile + -- Gitee