Add lilyterm (#230)

This commit is contained in:
John Jelinek IV 2017-02-01 15:42:01 -06:00 committed by Jess Frazelle
parent cd5a78a353
commit d18ced5226

19
lilyterm/Dockerfile Normal file
View File

@ -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 <jess@linux.com>
# 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" ]