dockerfiles/apt-file/Dockerfile

10 lines
193 B
Docker
Raw Normal View History

FROM debian:sid
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 [ "bash" ]