adding ubuntu as a base image variant for package version listing

This commit is contained in:
thelamer 2018-07-12 20:49:32 -07:00
parent d8e1caa5ea
commit 69e7d8aefb

View File

@ -180,7 +180,7 @@ def container_test(tag):
# Dump package information
if base == 'alpine':
command = 'apk info -v'
elif base == 'debian':
elif base == 'debian' or base == 'ubuntu':
command = 'apt list'
try:
info = container.exec_run(command)