diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0cecc25485609966a12dc73fdf900c366d526e18..8738f695aae8e5a50cb53a3c5963d66db1fade41 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,9 +18,6 @@ before_script:
     - make -C ${CI_JOB_NAME}
     - '[ "$CI_COMMIT_REF_NAME" != master ] || make -C ${CI_JOB_NAME} push'
 
-'15.0':
-  <<: *build_job
-
 '15.1':
   <<: *build_job
 
diff --git a/15.0/Dockerfile b/15.0/Dockerfile
deleted file mode 100644
index f1641de802d6422d2fabc782fb2ab8269212875d..0000000000000000000000000000000000000000
--- a/15.0/Dockerfile
+++ /dev/null
@@ -1,36 +0,0 @@
-FROM opensuse/leap:15.0
-
-RUN zypper refresh -f \
- && zypper update -y \
- && zypper clean
-
-RUN zypper --non-interactive install --no-recommends \
-  sudo wget curl which tar expect git \
-  make patch rpm-build rpmlint \
- && zypper clean
-
-RUN zypper --non-interactive install --no-recommends \
-  cmake libopenssl-devel ccache \
- && zypper clean
-
-RUN OBS_DIST=openSUSE_Leap_15.0 \
- && zypper --non-interactive addrepo --refresh https://download.opensuse.org/repositories/home:/lazyfrosch:/devel:/languages:/go/"${OBS_DIST}"/home:lazyfrosch:devel:languages:go.repo \
- && zypper --non-interactive addrepo --refresh https://download.opensuse.org/repositories/home:/lazyfrosch:/devel:/tools/"${OBS_DIST}"/home:lazyfrosch:devel:tools.repo \
- && zypper --gpg-auto-import-keys --non-interactive install spectool createrepo \
- && zypper clean -a
-
-RUN rpm --import https://packages.icinga.com/icinga.key \
- && zypper --non-interactive addrepo --refresh https://packages.icinga.com/openSUSE/ICINGA-release.repo \
- && zypper --non-interactive refresh \
- && zypper clean -a
-
-RUN groupadd -g 1000 build \
- && useradd -u 1000 -g 1000 -m build \
- && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \
- && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \
- && chown build.build /usr/local/bin
-
-USER build
-RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin
-ENTRYPOINT ["/usr/local/bin/icinga-build-entrypoint"]
-CMD ["icinga-build-package"]
diff --git a/15.0/Makefile b/15.0/Makefile
deleted file mode 100644
index f451fe153997996b75db9be5b1b9b967fad97fc4..0000000000000000000000000000000000000000
--- a/15.0/Makefile
+++ /dev/null
@@ -1,2 +0,0 @@
-VARIANT := x86_64
-include ../image.mk
diff --git a/Makefile b/Makefile
index 32d27a30477f2ab25c34e128786c300b1d7abb20..aaaa640a7fd6868644186f816f6a5b250082a141 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,7 @@
 all:
-	$(MAKE) -C 15.0
 	$(MAKE) -C 15.1
 	$(MAKE) -C 15.2
 
 push:
-	$(MAKE) -C 15.0 push
 	$(MAKE) -C 15.1 push
 	$(MAKE) -C 15.2 push