diff --git a/src/main/java/org/jenkinsci/plugins/docker/workflow/WithContainerStep.java b/src/main/java/org/jenkinsci/plugins/docker/workflow/WithContainerStep.java
index 8c6ccfb1a..41f4910b3 100644
--- a/src/main/java/org/jenkinsci/plugins/docker/workflow/WithContainerStep.java
+++ b/src/main/java/org/jenkinsci/plugins/docker/workflow/WithContainerStep.java
@@ -49,7 +49,6 @@
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
-import org.jenkinsci.plugins.docker.commons.fingerprint.DockerFingerprints;
import org.jenkinsci.plugins.docker.commons.tools.DockerTool;
import org.jenkinsci.plugins.docker.workflow.client.DockerClient;
import org.jenkinsci.plugins.docker.workflow.client.WindowsDockerClient;
@@ -206,7 +205,6 @@ public Execution() {
"Alternatively you can force image entrypoint to be disabled by adding option `--entrypoint=''`.");
}
- DockerFingerprints.addRunFacet(dockerClient.getContainerRecord(env, container), run);
ImageAction.add(step.image, run);
getContext().newBodyInvoker().
withContext(BodyInvoker.mergeLauncherDecorators(getContext().get(LauncherDecorator.class), new Decorator(container, envHost, ws, toolName, dockerVersion))).
diff --git a/src/main/resources/org/jenkinsci/plugins/docker/workflow/DockerDSL/help.jelly b/src/main/resources/org/jenkinsci/plugins/docker/workflow/DockerDSL/help.jelly
index b236bd723..f5344c4dd 100644
--- a/src/main/resources/org/jenkinsci/plugins/docker/workflow/DockerDSL/help.jelly
+++ b/src/main/resources/org/jenkinsci/plugins/docker/workflow/DockerDSL/help.jelly
@@ -47,7 +47,6 @@
Runs docker build to create and tag the specified image from a Dockerfile in the current directory.
Additional args may be added, such as '-f Dockerfile.other --pull --build-arg http_proxy=http://192.168.1.1:3128 .'. Like docker build, args must end with the build context.
Returns the resulting Image object.
- Records a FROM fingerprint in the build.
Image.iddocker run to run the image, and returns a Container which you could stop later.
Additional args may be added, such as '-p 8080:8080 --memory-swap=-1'.
Optional command is equivalent to Docker command specified after the image.
- Records a run fingerprint in the build.
Image.withRun[(args[, command])] {…}