mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
Add lilyterm (#230)
This commit is contained in:
parent
cd5a78a353
commit
d18ced5226
19
lilyterm/Dockerfile
Normal file
19
lilyterm/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user