Files
kata-containers/tools/packaging/tests/Dockerfile/Dockerfile.in
Peng Tao 782cd2ed10 packaging: merge packaging repository
git-subtree-dir: tools/packaging
git-subtree-mainline: f818b46a41
git-subtree-split: 1f22d72d5d

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
2020-06-23 22:58:18 -07:00

20 lines
407 B
Docker

# Copyright (c) 2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
# Usage: FROM [image name]
FROM @OS_DISTRIBUTION@
ARG TEST_REPO="https://github.com/kata-containers/tests"
RUN @UPDATE@
RUN @DEPENDENCIES@
# Install packages
RUN cd "/home/" && git clone "${TEST_REPO}"
RUN cd "/home/tests" && ./cmd/kata-manager/kata-manager.sh install-packages
RUN kata-runtime kata-env
CMD ["/bin/bash"]