mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
a9b8fad83d
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/
10 lines
203 B
Docker
10 lines
203 B
Docker
FROM debian:jessie
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
stress \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT [ "stress" ]
|