diff --git a/Changelog.md b/Changelog.md
index bce9027139991715ffddb765e6a0dafaebba04e6..e3d3c4ad615d21ebc9825843db12a0def9fe1f1a 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [1.4.7] - 2019-04-02
+### Added
+* `jq`-binary to docker-image
+
 ## [1.4.6] - 2019-03-27
 ### Added
 * explicitly deleting chart when `PENDING`, `FAILED` or `DELETED` since this blocks
@@ -7,7 +11,7 @@
 
 ## [1.4.5] - 2019-03-27
 ### Added
-* git-binary to docker-image
+* `git`-binary to docker-image
 
 ### Replaced
 * `upgrade --foce` instead of explicitly deleting chart. Hopefully this will solve issues
diff --git a/Dockerfile b/Dockerfile
index f0e7264fc6e8c5c4a049aa127407a2ffcf59bd17..da25212922a1046203d40a2e1452c486dfa7bf1b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ WORKDIR /app
 
 ENV APP_USER=deployer
 
-RUN apk add --no-cache bash curl git \
+RUN apk add --no-cache bash curl git jq \
 	&& curl -L https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl >/usr/local/bin/kubectl \
 	&& curl -L https://storage.googleapis.com/kubernetes-helm/helm-v2.13.0-linux-amd64.tar.gz | tar -zxf - -C /tmp linux-amd64/helm -O >/usr/local/bin/helm \
 	&& chmod a+x /usr/local/bin/deployer /usr/local/bin/kubectl /usr/local/bin/helm \