--- a
+++ b/trunk/wharfie/examples/Raspi64/Wharfile
@@ -0,0 +1,40 @@
+#
+# This is an example of a Wharfie image
+# with CODESYS.
+#
+
+FROM debian_arm64_stretch
+
+#
+# Base System
+#
+# Update the system and install desired tools
+RUN apt-get update; \
+    apt-get install -y --no-install-recommends systemd-sysv openssh-server net-tools kmod dhcpcd5
+
+# Add user 'wharfie' with password 'wharfie' for interactive login
+RUN useradd -ms /bin/bash wharfie; \
+    echo "wharfie:wharfie" | chpasswd; \
+    echo "root:root" | chpasswd;
+
+# Add fstab
+ADD ../common/files/fstab /etc/fstab
+
+# Change Hostname
+RUN HOST [ -f /usr/share/dict/words ] && printf "Wharfie-%s" $(grep '^[A-Z]' /usr/share/dict/words | sed -n "$(expr ${RANDOM} % $(grep '^[A-Z]' /usr/share/dict/words | wc -l))p" | sed "s,'.*,,") > etc/hostname
+
+#
+# Legal stuff
+#
+# Opational packages, which are containing
+# legal stuff and a toolchain to do cross builds.
+SOURCE sources.tar
+LICENSE license.tar
+TOOLCHAIN toolchain.tar
+
+#
+# Bootstrategy: Raspberry PI
+#
+#RUN HOST \
+#    ../../bootstrategy/raspberrypi64.sh rpi.img
+