Warning, /libraries/atcore/Dockerfile is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: AtCore Authors 0002 # SPDX-License-Identifier: MIT 0003 FROM fedora:25 0004 0005 WORKDIR /home/build 0006 #Setup 0007 RUN set -euxo pipefail; dnf -y update && dnf -y install \ 0008 git \ 0009 qt5-qtbase \ 0010 qt5-qtserialport-devel \ 0011 qt5-qtserialport \ 0012 qt5-qtcharts-devel \ 0013 qt5-qtcharts \ 0014 cmake extra-cmake-modules && \ 0015 git clone https://github.com/KDE/atcore.git && \ 0016 cmake atcore && make install 0017 CMD ./testclient/AtCoreTest