This commit is contained in:
Miroslav Šedivý
2023-10-15 19:24:42 +02:00
parent 3c4d7b9d60
commit e0245b86f3
9 changed files with 1148 additions and 0 deletions

17
test/xserver/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM debian:bullseye-slim
#
# install dependencies
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends x11-xserver-utils xserver-xorg-video-dummy; \
#
# clean up
apt-get clean -y; \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
#
# copy configuation files
COPY xorg.conf /etc/neko/xorg.conf
ENTRYPOINT [ "/usr/bin/X", "-config", "/etc/neko/xorg.conf", "-nolisten", "local", "-logfile", "/dev/stderr" ]