Skip to content

Commit 5042a74

Browse files
committed
typo
1 parent 93349e6 commit 5042a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jenkinsci/plugins/docker/workflow/WithContainerStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public static class Execution extends AbstractStepExecutionImpl {
184184
container = dockerClient.run(env, step.image, step.args, ws, volumes, volumesFromContainers, envReduced, dockerClient.whoAmI(), /* expected to hang until killed */ "cat");
185185
final List<String> ps = dockerClient.listProcess(env, container);
186186
if (!ps.contains("cat")) {
187-
listener.error("The container started but didn't run the expected command. Please double check your ENETRYPOINT does execute the command passed as docker run argument. See https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#entrypoint for entrypoint best practices.");
187+
listener.error("The container started but didn't run the expected command. Please double check your ENTRYPOINT does execute the command passed as docker run argument. See https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#entrypoint for entrypoint best practices.");
188188
}
189189

190190
DockerFingerprints.addRunFacet(dockerClient.getContainerRecord(env, container), run);

0 commit comments

Comments
 (0)