# To use: # docker run -v /tmp/.X11-unix:/tmp/.X11-unix \ # -e DISPLAY=unix$DISPLAY \ # jess/lilyterm # # Base docker image FROM debian:buster-slim LABEL 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" ]