diff options
author | Sascha Grunert <sgrunert@suse.com> | 2019-04-03 11:39:34 +0200 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2019-04-04 08:48:03 +0200 |
commit | 57fb7b2cf9f135b981a770282c7e2a94fc962f7b (patch) | |
tree | d438722a89cf6395db0421d633c12b9eda6c5531 /Dockerfile | |
parent | 4bda5378b1434951dbbdf1b6101d662cbf708098 (diff) | |
download | podman-57fb7b2cf9f135b981a770282c7e2a94fc962f7b.tar.gz podman-57fb7b2cf9f135b981a770282c7e2a94fc962f7b.tar.bz2 podman-57fb7b2cf9f135b981a770282c7e2a94fc962f7b.zip |
Fix Dockerfile dependencies for packer tests
This commit adds unzip and python3-yaml to the Dockerfile, which are
needed to run the tests in contrib/cirrus/packer within the libpod
container image.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 6d44b963f..28e0b88cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,8 @@ RUN apt-get update && apt-get install -y \ socat \ lsof \ xz-utils \ + unzip \ + python3-yaml \ --no-install-recommends \ && apt-get clean |