Docker: Add x11-apps to manual test installation

Running xeyes is a good check that X works.

Also, don't remove the package data base in the run setup, that makes
further configurations (too) inconvenient.

Change-Id: I5760b99f6e2ed3e4539580049f04d24b64cecfd8
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2022-04-14 13:31:27 +02:00
parent 7fadaff5d4
commit b1392e7938
3 changed files with 6 additions and 2 deletions

View File

@@ -34,6 +34,7 @@ RUN apt-get update && \
nim \
linux-tools-common \
valgrind \
x11-apps \
&& apt-get clean
# && rm -rf /var/lib/apt/lists/*

View File

@@ -34,6 +34,7 @@ RUN apt-get update && \
nim \
linux-tools-common \
valgrind \
x11-apps \
&& apt-get clean
# && rm -rf /var/lib/apt/lists/*

View File

@@ -14,5 +14,7 @@ RUN apt-get update \
gdb \
linux-tools-common \
valgrind \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
x11-apps \
&& apt-get clean
# && rm -rf /var/lib/apt/lists/*