kata-containers/tests/functional/vfio-ap/Dockerfile
Hyounggyu Choi 5bda197e9d tests: Add zcrypttest tool to test image Dockerfile
This commit copies an internal testing tool `zcrypttest` to the
test image. A base image is changed to `ubuntu:22.04` due to a
library dependency issue.

Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
2024-07-01 11:40:49 +02:00

13 lines
223 B
Docker

# Copyright (c) 2023 IBM Corp.
#
# SPDX-License-Identifier: Apache-2.0
FROM ubuntu:22.04
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y s390-tools
COPY zcrypttest /usr/local/bin/
CMD ["bash"]