Warning, /sdk/clazy/tests/docker/images/clazy-archlinux/Dockerfile is written in an unsupported language. File is not indexed.

0001 # This Dockerfile creates the container for testing on Archlinux
0002 # You can run, for example: clazy/tests/docker/test_docker.py -b 1.6 , which will run the tests in all containers
0003 # Or explicitly: docker run -i -t iamsergio/clazy-archlinux sh /root/clazy/tests/docker/build-clazy.sh 1.6 -j12 none /usr
0004 
0005 FROM archlinux
0006 MAINTAINER Sergio Martins (sergio.martins@kdab.com)
0007 
0008 RUN pacman -Syu --noconfirm
0009 RUN pacman -S git cmake ninja make gcc python3 clang llvm qt5-base qt5-declarative --noconfirm
0010 
0011 WORKDIR /root
0012 RUN git clone https://github.com/KDE/clazy.git