dockerfiles/lynx/Dockerfile

16 lines
300 B
Docker
Raw Normal View History

# Run Lynx in a conatiner
2015-07-20 00:43:14 +02:00
#
# docker run --rm -it \
# --name lynx \
# jess/lynx github.com/jessfraz
2015-07-20 00:43:14 +02:00
#
FROM debian:stretch
MAINTAINER Jessie Frazelle <jess@linux.com>
2014-10-11 22:46:19 +02:00
RUN apt-get update && apt-get install -y \
lynx \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2014-10-11 22:46:19 +02:00
ENTRYPOINT [ "lynx" ]