mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-30 03:34:29 +01:00
Because CI build is 1. Slow and in log it is showing because "apt-utils" not installed 2. to avoid CI build to exits with error without having certificate Fixes: #427 Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
42 lines
704 B
Docker
42 lines
704 B
Docker
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# NOTE: OS_VERSION is set according to config.sh
|
|
from docker.io/debian:@OS_VERSION@
|
|
|
|
# RUN commands
|
|
RUN apt-get update && apt-get --no-install-recommends install -y \
|
|
apt-utils \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
build-essential \
|
|
ca-certificates \
|
|
chrony \
|
|
cmake \
|
|
coreutils \
|
|
curl \
|
|
debianutils \
|
|
debootstrap \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
libstdc++-6-dev \
|
|
m4 \
|
|
make \
|
|
musl \
|
|
musl-dev \
|
|
musl-tools \
|
|
sed \
|
|
systemd \
|
|
tar \
|
|
vim \
|
|
wget
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|
|
@INSTALL_RUST@
|