We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f3c02 commit 90b8aadCopy full SHA for 90b8aad
controls/container_images.rb
@@ -174,7 +174,7 @@
174
ref 'caching and apt-get update', url: 'https://github.com/moby/moby/issues/3313'
175
176
docker.images.ids.each do |id|
177
- describe command("docker --no-trunc history #{id}| grep -e 'update'") do
+ describe command("docker history #{id} --no-trunc| grep -e 'update'") do
178
its('stdout') { should eq '' }
179
end
180
@@ -216,7 +216,7 @@
216
ref 'Best practices for writing Dockerfiles', url: 'https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/'
217
218
219
- describe command("docker --no-trunc history #{id}| grep 'ADD'") do
+ describe command("docker history #{id} --no-trunc| grep 'ADD'") do
220
221
222
0 commit comments