mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-28 03:42:09 +00:00
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>
13 lines
223 B
Docker
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"]
|
|
|