mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-01 21:44:22 +01:00
Building rootfs does not depend on golang, delete intalling golang may save build time. And there is only rust agent now, the code for golang agent should be deleted too. Fixes: #2170 Signed-off-by: bin <bin@hyper.sh>
46 lines
967 B
Docker
46 lines
967 B
Docker
#
|
|
# Copyright (c) 2018 Yash Jain
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=docker.io
|
|
#ubuntu: docker image to be used to create a rootfs
|
|
#@OS_VERSION@: Docker image version to build this dockerfile
|
|
FROM ${IMAGE_REGISTRY}/ubuntu:@OS_VERSION@
|
|
|
|
# This dockerfile needs to provide all the componets need to build a rootfs
|
|
# Install any package need to create a rootfs (package manager, extra tools)
|
|
|
|
# RUN commands
|
|
RUN apt-get update && apt-get --no-install-recommends install -y \
|
|
apt-utils \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
build-essential \
|
|
ca-certificates \
|
|
chrony \
|
|
coreutils \
|
|
curl \
|
|
debianutils \
|
|
debootstrap \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
libc6-dev \
|
|
libstdc++-8-dev \
|
|
m4 \
|
|
make \
|
|
musl \
|
|
musl-dev \
|
|
musl-tools \
|
|
protobuf-compiler \
|
|
sed \
|
|
systemd \
|
|
tar \
|
|
vim \
|
|
wget
|
|
|
|
# This will install the proper packages to build Kata components
|
|
@INSTALL_RUST@
|