mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-21 07:14: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>
19 lines
295 B
Docker
19 lines
295 B
Docker
#
|
|
# Copyright (c) 2018 HyperHQ Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From docker.io/golang:@GO_VERSION@-alpine
|
|
|
|
RUN apk update && apk add \
|
|
git \
|
|
make \
|
|
bash \
|
|
gcc \
|
|
musl-dev \
|
|
linux-headers \
|
|
apk-tools-static \
|
|
libseccomp \
|
|
libseccomp-dev \
|
|
curl
|