From 23629a352028fb8d0f97dacf59c7142a470b9c20 Mon Sep 17 00:00:00 2001
From: samuel-p <codes@samuel-philipp.de>
Date: Sun, 29 Nov 2020 12:31:58 +0100
Subject: [PATCH] updated .drone.yml added renovate.json

---
 .drone.yml    | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 Dockerfile    |  2 +-
 renovate.json |  9 +++++++++
 3 files changed, 60 insertions(+), 1 deletion(-)
 create mode 100644 renovate.json

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"
+}