dockerfiles/apt-file/Dockerfile

10 lines
191 B
Docker
Raw Normal View History

FROM debian:sid
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
apt-file \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
CMD [ "bash" ]