diff --git a/.drone.yml b/.drone.yml
index 17b85bd..ce421ee 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -18,6 +18,39 @@ steps:
       password:
         from_secret: PASSWORD
 
+trigger:
+  branch:
+    - master
+  event:
+    - push
+
+---
+kind: pipeline
+type: docker
+name: linux-arm64
+
+platform:
+  os: linux
+  arch: arm64
+
+steps:
+  - name: docker
+    image: plugins/docker
+    settings:
+      auto_tag: true
+      auto_tag_suffix: linux-arm64
+      repo: samuelph/connectivity-check
+      username:
+        from_secret: USERNAME
+      password:
+        from_secret: PASSWORD
+
+trigger:
+  branch:
+    - master
+  event:
+    - push
+
 ---
 kind: pipeline
 type: docker
@@ -39,11 +72,21 @@ steps:
       password:
         from_secret: PASSWORD
 
+trigger:
+  branch:
+    - master
+  event:
+    - push
+
 ---
 kind: pipeline
 type: docker
 name: manifest
 
+platform:
+  os: linux
+  arch: arm64
+
 steps:
   - name: publish
     image: plugins/manifest
@@ -62,4 +105,11 @@ steps:
 
 depends_on:
   - linux-amd64
+  - linux-arm64
   - linux-arm
+
+trigger:
+  branch:
+    - master
+  event:
+    - push
diff --git a/Dockerfile b/Dockerfile
index 9e620af..b40d8b2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,3 @@
-FROM nginx:alpine
+FROM nginx:1.19.4-alpine
 
 COPY nginx.conf /etc/nginx/nginx.conf
diff --git a/renovate.json b/renovate.json
new file mode 100644
index 0000000..7e23eca
--- /dev/null
+++ b/renovate.json
@@ -0,0 +1,9 @@
+{
+  "assignees": [
+    "samuel-p"
+  ],
+  "baseBranches": [
+    "master"
+  ],
+  "rangeStrategy": "bump"
+}