From d18ced5226bcce486019d3bb27259094d70bbabe Mon Sep 17 00:00:00 2001 From: John Jelinek IV Date: Wed, 1 Feb 2017 15:42:01 -0600 Subject: [PATCH] Add lilyterm (#230) --- lilyterm/Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lilyterm/Dockerfile diff --git a/lilyterm/Dockerfile b/lilyterm/Dockerfile new file mode 100644 index 0000000..e0b5a27 --- /dev/null +++ b/lilyterm/Dockerfile @@ -0,0 +1,19 @@ +# To use: +# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \ +# -e DISPLAY=unix$DISPLAY \ +# jess/lilyterm +# + +# Base docker image +FROM debian:stretch +MAINTAINER Jessie Frazelle + +# Install all the things +RUN apt-get update && apt-get install -y \ + mesa-utils \ + dbus \ + lilyterm \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* + +ENTRYPOINT [ "lilyterm" ]