forked from qt-creator/qt-creator
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>
21 lines
355 B
Plaintext
21 lines
355 B
Plaintext
|
|
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
openssh-client \
|
|
sudo \
|
|
vim \
|
|
wget \
|
|
libqt5core5a \
|
|
libqt5widgets5 \
|
|
libqt5quick5 \
|
|
libqt5quickcontrols2-5 \
|
|
gdb \
|
|
linux-tools-common \
|
|
valgrind \
|
|
x11-apps \
|
|
&& apt-get clean
|
|
|
|
# && rm -rf /var/lib/apt/lists/*
|