diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bdafcae42a7d69d5ec3cd0ce4d66c794cfd01b12..3b99f6f6c26f21be523a1ab6fe8fea3e6fdb82af 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -88,3 +88,9 @@ ansible-buster:
   stage: second
   variables:
     IMAGE_NAME: fsmpi-ansible
+
+website-stretch:
+  extends: .build-stretch
+  stage: second
+  variables:
+    IMAGE_NAME: fsmpi-website
diff --git a/fsmpi-website/Dockerfile b/fsmpi-website/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..c3fb0156deb8323a72bccdb7df574ba49abc85a0
--- /dev/null
+++ b/fsmpi-website/Dockerfile
@@ -0,0 +1,3 @@
+ARG DEBIAN_RELEASE=stretch
+FROM registry.git.fsmpi.rwth-aachen.de/infra/ci-containers/fsmpi-python:${DEBIAN_RELEASE}
+RUN apt-get update && apt-get install -y openssh-client rsync default-jre git && rm -rf /var/lib/apt/lists/*