diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b0bd63a..600f802 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,37 +2,39 @@ stages:
   - test
   - build
 
-.go_template:
-  image: golang:latest
-  before_script:
-    - make go/dependencies
+# .go_template:
+#   image: golang:latest
+#   before_script:
+#     - make download
 
-.docker_template:
-  image: docker:stable
-  services:
-    - docker:dind
-  before_script:
-    - apk add git
-    - apk add make
-    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
+# .docker_template:
+#   image: docker:stable
+#   services:
+#     - docker:dind
+#   before_script:
+#     - apk add git
+#     - apk add make
+#     - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
 
 dependencies:
-  extends: .go_template
   stage: test
   script:
-    - make go/checkDependencies
+    - make check/dependencies
 
 format:
-  extends: .go_template
   stage: test
   script:
-    - make go/checkFmt
+    - make check/fmt
 
 test:
-  extends: .go_template
   stage: test
   script:
-    - make go/test
+    - make test
+
+build:
+  stage: build
+  script:
+    - make build
 
 # build:
 #   extends: .go_template
@@ -49,21 +51,21 @@ test:
 #       - dist/checksums.txt
 #     expire_in: 1 day
 
-docker/gitlab:
-  extends: .docker_template
-  stage: build
-  only:
-    - tags
-  script:
-    - make docker/build/latest
-    - make docker/build/tag
-    - docker push registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter
+# docker/gitlab:
+#   extends: .docker_template
+#   stage: build
+#   only:
+#     - tags
+#   script:
+#     - make docker/build/latest
+#     - make docker/build/tag
+#     - docker push registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter
 
-docker/gitlab/nightly:
-  extends: .docker_template
-  stage: build
-  only:
-    - main
-  script:
-    - make docker/build/nightly
-    - docker push registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter
+# docker/gitlab/nightly:
+#   extends: .docker_template
+#   stage: build
+#   only:
+#     - main
+#   script:
+#     - make docker/build/nightly
+#     - docker push registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter
diff --git a/Makefile b/Makefile
index 12434b7..6a7830d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,30 +1,27 @@
-go/dependencies:
+download:
 	go mod download
 
-# Make sure no unnecessary dependencies are present
-go/checkDependencies:
+test: download
+	go test ./... -v -race
+
+fmt: download
+	go fmt ./...
+
+check/dependencies: download
 	go mod tidy -v
 	git diff-index --quiet HEAD
 
-# Standard go test
-go/test:
-	go test ./... -v -race
-
-go/fmt:
-	go fmt ./...
-
-go/checkFmt:
+check/fmt: download
 	test -z $(shell gofmt -l .)
 
-build/docker:
-	go build -o fail2ban_exporter \
-     -ldflags '-X main.version=$(shell git describe --tags) -X main.commit=${shell git rev-parse HEAD} -X "main.date=${shell date --rfc-3339=seconds}" -X main.builtBy=docker' exporter.go
-
-docker/build/latest:
-	docker build -t registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter:latest .
-
-docker/build/nightly:
-	docker build -t registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter:nightly .
-
-docker/build/tag:
-	docker build -t registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter:$(shell git describe --tags) .
+build:
+	mkdir -p build/
+	go build \
+	-ldflags "\
+	-X main.version=${shell git describe --tags} \
+	-X main.commit=${shell git rev-parse HEAD} \
+	-X main.date=${shell date --iso-8601=seconds} \
+	-X main.builtBy=manual \
+	" \
+	-o build/fail2ban_exporter \
+	exporter.go