diff options
author | umohnani8 <umohnani@redhat.com> | 2018-06-14 14:53:59 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-18 14:41:51 +0000 |
commit | db094f6e15d3e63772d4346b0176cb6fc682b2fc (patch) | |
tree | a48a5eff164c91be48919e436eb3a3f9c58b96b8 /test/e2e/libpod_suite_test.go | |
parent | 4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328 (diff) | |
download | podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.tar.gz podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.tar.bz2 podman-db094f6e15d3e63772d4346b0176cb6fc682b2fc.zip |
Add --all,-a flag to podman images
podman images will not show intermediate images by default.
To view all images, including intermediate images created during
a build, use the --all flag.
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #947
Approved by: rhatdan
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r-- | test/e2e/libpod_suite_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index d06818fd3..3d444f662 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -593,11 +593,11 @@ func (p *PodmanTest) GetContainerStatus() string { // BuildImage uses podman build and buildah to build an image // called imageName based on a string dockerfile -func (p *PodmanTest) BuildImage(dockerfile, imageName string) { +func (p *PodmanTest) BuildImage(dockerfile, imageName string, layers string) { dockerfilePath := filepath.Join(p.TempDir, "Dockerfile") err := ioutil.WriteFile(dockerfilePath, []byte(dockerfile), 0755) Expect(err).To(BeNil()) - session := p.Podman([]string{"build", "-t", imageName, "--file", dockerfilePath, p.TempDir}) + session := p.Podman([]string{"build", "--layers=" + layers, "-t", imageName, "--file", dockerfilePath, p.TempDir}) session.Wait(120) Expect(session.ExitCode()).To(Equal(0)) } |