diff --git a/Dockerfile b/Dockerfile
index 263b9ed3a9e19114fe565bb0d358de8114d52c59..c7443cfcbb39667402f821bc3280ebce2fe91803 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,15 +2,18 @@ FROM docker:18.06.1
 
 LABEL com.example.vendor="PARAGON Executive Service GmbH" \
       maintainer="juergen@paragon-es.de" \
-      version="1.0.0" \
+      version="1.1.0" \
       description="An image for GitLab runner to build and test Drupal projects."
 
 ARG compose_version=1.21.2
 ARG glibc_version=2.28-r0
 
-RUN apk update && \
+RUN mkdir -p /root/.ssh && \
+    echo "StrictHostKeyChecking no" >> /root/.ssh/config && \
+    \
+    apk update && \
     apk add --no-cache curl openssl openssh ca-certificates wget make \
-        bash python nodejs npm git unzip \
+        bash fish python nodejs npm git unzip \
         php7 php7-phar php7-json php7-dom php7-gd php7-mbstring php7-openssl \
         php7-pdo php7-curl php7-xml php7-zip php7-session php7-ctype \
         php7-tokenizer php7-simplexml php7-xmlwriter && \
@@ -26,6 +29,9 @@ RUN apk update && \
     \
     ln -s /usr/bin/php7 /usr/local/bin/php && \
     \
+    wget -q https://github.com/ahoy-cli/ahoy/releases/download/2.0.0/ahoy-bin-`uname -s`-amd64 -O /usr/local/bin/ahoy && \
+    chmod +x /usr/local/bin/ahoy && \
+    \
     wget -q https://github.com/docker/compose/releases/download/${compose_version}/docker-compose-`uname -s`-`uname -m` -O /usr/local/bin/docker-compose && \
     chmod +x /usr/local/bin/docker-compose && \
     \