diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 74dd492c425b808b4d6e701371047e76c085d0c4..c1f4a469a8f56a543433743a3821f39ed3b46d36 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,7 @@ node:
   stage: build
   parallel:
     matrix:
-      - VERSION: ['8-jessie-slim','10-jessie-slim','12-stretch-slim','13-stretch-slim']
+      - VERSION: ['8-jessie-slim','10-jessie-slim','12-stretch-slim','13-stretch-slim','14-stretch-slim','16-stretch-slim']
   script:
     - docker build --pull --build-arg NODE_VERSION=${VERSION} -t $CI_REGISTRY_IMAGE:${VERSION} .
     - docker push $CI_REGISTRY_IMAGE:${VERSION}
diff --git a/Dockerfile b/Dockerfile
index 32502bceee771cfbb2ce71bf443839bf7f404dcc..7d18757b868913b7cf64c979bbdbc16c2e6de5ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,7 +7,7 @@ LABEL com.example.vendor="LakeDrops" \
       description="Node container with build tools included."
 
 RUN apt-get update -y && \
-    apt-get install -y -q python3 make g++ curl && \
+    apt-get install -y -q python3 make g++ curl git && \
     ln -s python3 /usr/bin/python && \
     \
     apt-get clean && \