debootstrap

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-10-19 15:29:11 -07:00
parent 33db16536c
commit eff527762f
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

9
debootstrap/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 \
debootstrap \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "debootstrap" ]