1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-15 17:58:08 +01:00

10 lines
213 B
Docker
Raw Normal View History

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" ]