mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
23 lines
697 B
Plaintext
23 lines
697 B
Plaintext
FROM centos:7 as centos7
|
|
ARG TARGETARCH
|
|
ENV OS=centos
|
|
ENV OS_VERSION=7
|
|
ARG BUILD_TOOLS="yum-utils createrepo mkisofs epel-release"
|
|
ARG DIR=${OS}${OS_VERSION}-${TARGETARCH}-rpms
|
|
|
|
RUN yum install -q -y ${BUILD_TOOLS} \
|
|
&& yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo \
|
|
&& yum makecache
|
|
|
|
WORKDIR package
|
|
COPY packages.yaml .
|
|
COPY --from=mikefarah/yq:4.11.1 /usr/bin/yq /usr/bin/yq
|
|
RUN yq eval ".common[],.rpms[],.${OS}[],.${OS}${OS_VERSION}[]" packages.yaml > packages.list
|
|
|
|
RUN sort -u packages.list | xargs repotrack -p ${DIR} \
|
|
&& createrepo -d ${DIR} \
|
|
&& mkisofs -r -o ${DIR}.iso ${DIR}
|
|
|
|
FROM scratch
|
|
COPY --from=centos7 /package/*.iso /
|