1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-02-24 13:07:53 +01:00
dockerfiles/lynx/Dockerfile
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL ()
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

16 lines
308 B
Docker

# Run Lynx in a conatiner
#
# docker run --rm -it \
# --name lynx \
# jess/lynx github.com/jessfraz
#
FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
lynx \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "lynx" ]