Remove misc/docker

Those now live in a separate repo:
https://www.github.com/qutebrowser/docker-travis
This commit is contained in:
Florian Bruhin 2016-09-02 16:48:54 +02:00
parent 55557b5c19
commit 0763acb625
3 changed files with 0 additions and 94 deletions

View File

@ -1,29 +0,0 @@
FROM base/archlinux
MAINTAINER Florian Bruhin <me@the-compiler.org>
RUN echo 'Server = http://mirror.de.leaseweb.net/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
RUN pacman-key --init && pacman-key --populate archlinux && pacman -Sy --noconfirm archlinux-keyring
RUN pacman -S --noconfirm pacman && pacman-db-upgrade
RUN pacman -Suyy --noconfirm \
git \
python-tox \
qt5-base \
qt5-declarative \
qt5-webkit \
python-pyqt5 \
xorg-xinit \
xorg-server-xvfb
RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && locale-gen
RUN useradd user && mkdir /home/user && chown -R user:users /home/user
USER user
WORKDIR /home/user
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
CMD git clone /outside qutebrowser.git && \
cd qutebrowser.git && \
tox -e py35

View File

@ -1,32 +0,0 @@
FROM debian:jessie
MAINTAINER Florian Bruhin <me@the-compiler.org>
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && \
apt-get -y dist-upgrade && \
apt-get -y install --no-install-recommends \
python3-pyqt5 \
python3-pyqt5.qtquick \
python3-pyqt5.qtwebkit \
python-tox \
python3-sip \
xvfb \
xauth \
git \
python3-setuptools \
wget \
locales \
libjs-pdf
RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && locale-gen
RUN useradd user && mkdir /home/user && chown -R user:users /home/user
USER user
WORKDIR /home/user
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
CMD git clone /outside qutebrowser.git && \
cd qutebrowser.git && \
tox -e py34

View File

@ -1,33 +0,0 @@
FROM ubuntu:xenial
MAINTAINER Florian Bruhin <me@the-compiler.org>
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && \
apt-get -y dist-upgrade && \
apt-get -y install --no-install-recommends \
python3-pyqt5 \
python3-pyqt5.qtquick \
python3-pyqt5.qtwebkit \
python-tox \
python3-sip \
xvfb \
git \
python3-setuptools \
wget \
language-pack-en \
libjs-pdf \
dbus
RUN dbus-uuidgen --ensure
RUN useradd user && mkdir /home/user && chown -R user:users /home/user
USER user
WORKDIR /home/user
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
CMD git clone /outside qutebrowser.git && \
cd qutebrowser.git && \
tox -e py35