aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/docker/Dockerfile-qt-5-ubuntu-20.04-run
blob: 4ded6ab648a71387e4798056a040c6c8684aeaa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

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/*