summaryrefslogtreecommitdiff
path: root/scripts/dev/ci/docker/Dockerfile.j2
blob: d3fc82793037510da31287a4ac3e8d9ee60ebb4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM archlinux:latest

{% if unstable %}
RUN sed -i '/^# after the header/a[kde-unstable]\nInclude = /etc/pacman.d/mirrorlist\n\n[testing]\nInclude = /etc/pacman.d/mirrorlist' /etc/pacman.conf
{% endif %}
RUN pacman -Suyy --noconfirm \
    git \
    python-tox \
    python-distlib \
    qt5-base \
    qt5-declarative \
    {% if webengine %}qt5-webengine python-pyqtwebengine{% else %}qt5-webkit{% endif %} \
    python-pyqt5 \
    xorg-xinit \
    xorg-server-xvfb \
    ttf-bitstream-vera \
    gcc \
    libyaml \
    xorg-xdpyinfo

RUN useradd user -u 1001 && \
    mkdir /home/user && \
    chown user:users /home/user
USER user
WORKDIR /home/user

CMD git clone /outside qutebrowser.git && \
    cd qutebrowser.git && \
    tox -e py