dockerfiles/stress/Dockerfile

10 lines
204 B
Docker
Raw Normal View History

FROM debian:stretch
2014-09-23 23:46:54 +02:00
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
stress \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2014-09-23 23:46:54 +02:00
ENTRYPOINT [ "stress" ]