mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-31 04:54:21 +01:00
Instead of relying on a centos/docker image, present only on dockerhub, let's rely on the centos:7 image from the centos registry, and apply the same modifications applied when generating the centos/systemd image. The main reason for doing this is avoiding to update an image from 3 years ago, making the delta of the packages updated smaller. If you're curious why we keep using CentOS 7 though, the reason is because CentOS 8, and UBI images have a different systemd configuration that works quite well when mounting the image using podman, but systemd can't connect dbus when running on environments like AKS or even minikube. So, in order to be as compatible as possible, let's keep using the CentOS 7 image for now, at least till we find a suitable substitute for that. Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
46 lines
1.3 KiB
Docker
46 lines
1.3 KiB
Docker
# Copyright Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM registry.centos.org/centos:7 AS base
|
|
|
|
ENV container docker
|
|
|
|
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
|
rm -f /lib/systemd/system/multi-user.target.wants/*; \
|
|
rm -f /etc/systemd/system/*.wants/*; \
|
|
rm -f /lib/systemd/system/local-fs.target.wants/*; \
|
|
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
|
|
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
|
rm -f /lib/systemd/system/basic.target.wants/*; \
|
|
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
|
|
|
VOLUME [ "/sys/fs/cgroup" ]
|
|
|
|
CMD ["/usr/sbin/init"]
|
|
|
|
FROM base
|
|
|
|
ARG KUBE_ARCH=amd64
|
|
ARG KATA_ARTIFACTS=./kata-static.tar.xz
|
|
ARG DESTINATION=/opt/kata-artifacts
|
|
|
|
COPY ${KATA_ARTIFACTS} .
|
|
|
|
RUN \
|
|
yum -y update && \
|
|
yum install -y epel-release && \
|
|
yum install -y bzip2 jq && \
|
|
yum clean all && \
|
|
mkdir -p ${DESTINATION} && \
|
|
tar xvf ${KATA_ARTIFACTS} -C ${DESTINATION}/ && \
|
|
chown -R root:root ${DESTINATION}/
|
|
|
|
RUN \
|
|
curl -Lso /bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/${KUBE_ARCH}/kubectl && \
|
|
chmod +x /bin/kubectl
|
|
|
|
COPY scripts ${DESTINATION}/scripts
|
|
RUN \
|
|
ln -s ${DESTINATION}/scripts/kata-deploy.sh /usr/bin/kata-deploy
|