This commit is contained in:
Jessica Frazelle 2015-04-16 17:50:32 -07:00
parent 5563e33530
commit e237120770
2 changed files with 10 additions and 1 deletions

View File

@ -5,4 +5,4 @@ RUN apt-get update && apt-get install -y \
stress \
--no-install-recommends
ENTRYPOINT [ "stress" ]
CMD [ "stress" ]

9
ulimit/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ulimit \
--no-install-recommends
ENTRYPOINT [ "ulimit" ]
CMD [ "-n" ]