From 705c896c5321f3228a6118ccd5b116bf08050ac1 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sat, 9 Jul 2022 13:46:49 +0200 Subject: [PATCH] ci: Rename Containerfile to Dockerfile to fix dependency management This patch renames all uses of `Containerfile` with `Dockerfile` in order to enable renovate to manage dependencies and images properly. Currently renovate doesn't support the Containerfile name as match for its docker module, which would mean that either there is custom config added or renaming the files. Since there is no explicit benefit of using Containerfile as name, this patch just renames them in order to avoid custom renovate config. --- images/demo/{Containerfile => Dockerfile} | 0 images/dovecot/{Containerfile => Dockerfile} | 0 images/postfix/{Containerfile => Dockerfile} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename images/demo/{Containerfile => Dockerfile} (100%) rename images/dovecot/{Containerfile => Dockerfile} (100%) rename images/postfix/{Containerfile => Dockerfile} (100%) diff --git a/images/demo/Containerfile b/images/demo/Dockerfile similarity index 100% rename from images/demo/Containerfile rename to images/demo/Dockerfile diff --git a/images/dovecot/Containerfile b/images/dovecot/Dockerfile similarity index 100% rename from images/dovecot/Containerfile rename to images/dovecot/Dockerfile diff --git a/images/postfix/Containerfile b/images/postfix/Dockerfile similarity index 100% rename from images/postfix/Containerfile rename to images/postfix/Dockerfile -- GitLab