* add fedora 34 and ubuntu 21.04 * remove qt5-default from ubuntu 21.04 apparently it's not required? * disable tests on fedora 34
21 lines
462 B
Docker
21 lines
462 B
Docker
FROM fedora:34
|
|
|
|
RUN dnf install -y \
|
|
@development-tools \
|
|
ccache \
|
|
cmake \
|
|
desktop-file-utils \
|
|
file \
|
|
gcc-c++ \
|
|
git \
|
|
hicolor-icon-theme \
|
|
libappstream-glib \
|
|
mariadb-devel \
|
|
protobuf-devel \
|
|
qt5-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \
|
|
rpm-build \
|
|
sqlite-devel \
|
|
wget \
|
|
xz-devel \
|
|
zlib-devel \
|
|
&& dnf clean all
|