mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
All the work done on this file, apart from merging the 2.x repo, and now removing unused lines, comes from Intel. The reason it's being added is to silent a complaint from the static checker. Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
26 lines
731 B
Docker
26 lines
731 B
Docker
# Copyright Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM centos/systemd
|
|
ARG KUBE_ARCH=amd64
|
|
ARG KATA_ARTIFACTS=./kata-static.tar.xz
|
|
ARG DESTINATION=/opt/kata-artifacts
|
|
|
|
COPY ${KATA_ARTIFACTS} .
|
|
|
|
RUN \
|
|
yum install -y epel-release && \
|
|
yum install -y bzip2 jq && \
|
|
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
|