mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
10 lines
188 B
Docker
10 lines
188 B
Docker
|
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" ]
|