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/
This commit is contained in:
Tibor Vass 2015-06-18 11:16:28 -04:00 committed by Jessica Frazelle
parent a2572ff6b7
commit cec326d3f0
1 changed files with 1 additions and 1 deletions

View File

@ -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" ]