From cec326d3f06731c6cab81d2714a5a72d54d8c3f7 Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Thu, 18 Jun 2015 11:16:28 -0400 Subject: [PATCH] Update stress to use ENTRYPOINT instead of CMD This is to avoid the ugly: docker run jess/stress stress -c 4 ... and instead use what's in the example usage: https://registry.hub.docker.com/u/jess/stress/ --- stress/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stress/Dockerfile b/stress/Dockerfile index 585a23c..e5b0bbe 100644 --- a/stress/Dockerfile +++ b/stress/Dockerfile @@ -6,4 +6,4 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* -CMD [ "stress" ] +ENTRYPOINT [ "stress" ]