mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
9 lines
175 B
Docker
9 lines
175 B
Docker
|
FROM debian:jessie
|
||
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
stress \
|
||
|
--no-install-recommends
|
||
|
|
||
|
ENTRYPOINT [ "stress" ]
|