--- a
+++ b/trunk/wharfie/tests/QEMUTest/Wharfile
@@ -0,0 +1,44 @@
+#
+# This is an example of a Wharfie image
+# with pyload. It is derived from the
+# docker container writl/pyload
+#
+
+FROM debian_armel_stretch
+
+RUN sed -i 's,main,main non-free,' /etc/apt/sources.list
+
+RUN apt-get update && apt-get install -y --no-install-recommends \
+	systemd-sysv \
+	dhcpcd5 \
+	wpasupplicant \
+	kmod \
+	wireless-tools \
+	net-tools \
+	openssh-server \
+	python \
+	locales \
+	python-setuptools \
+	python-requests \
+	python-pycurl \
+	python-crypto \
+	python-imaging \
+	python-pyxmpp \
+	python-jinja2 \
+	python-thrift \
+	python-feedparser \
+	python-beautifulsoup \
+	python-pip \
+	tesseract-ocr \
+	python-beaker \
+	unrar \
+	gocr \
+	python-django \
+	git \
+	rhino \
+	&& apt-get clean \
+	&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
+	&& pip install Send2Trash
+
+TO result.tar
+