1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-02-20 11:07:55 +01:00
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" ]