add apt-file

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle
2015-06-09 13:11:55 -07:00
parent bb4248d603
commit 748d8f9383
2 changed files with 39 additions and 0 deletions

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