13 lines
197 B
Docker
13 lines
197 B
Docker
|
|
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get install -y revelation x11-xserver-utils
|
|
|
|
ENV DISPLAY=":0"
|
|
|
|
#RUN xhost +local:
|
|
|
|
ENTRYPOINT [ "/usr/bin/dbus-run-session", "/usr/bin/revelation" ]
|
|
|
|
|