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

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 \
 && apt-get clean \
 && rm -rf /var/lib/apt/lists/*