1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-11 14:42:46 +02:00
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

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

9
ulimit/Dockerfile Normal 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" ]