dockerfiles/ulimit/Dockerfile

10 lines
188 B
Docker
Raw Normal View History

2015-04-17 02:50:32 +02:00
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" ]