mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-17 13:24:25 +01:00
In case a user wants to use podman instead of docker to build initrd/rootfs images, facilitate it by setting the variable `USE_PODMAN=true`. Fixes: #370 Signed-off-by: Nitesh Konkar <niteshkonkar@in.ibm.com>
14 lines
344 B
Docker
14 lines
344 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 install -y curl wget systemd debootstrap git build-essential chrony
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|
|
|