From 82acdaf70324b75fc3a9554d513f3feac3bfb77e Mon Sep 17 00:00:00 2001 From: Akbar Date: Thu, 12 Sep 2024 09:30:04 -0400 Subject: [PATCH] Move Dockerfile to project root. This allows shorter builds for checked out repositories (docker build .) as well as convenient builds off of the git repo (docker build ). See issue #41 for more details. --- .github/workflows/release.yml | 2 +- contrib/Dockerfile => Dockerfile | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename contrib/Dockerfile => Dockerfile (100%) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50558e6..268079b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,7 +86,7 @@ jobs: with: builder: ${{ steps.buildx.outputs.name }} context: . - file: ./contrib/Dockerfile + file: ./Dockerfile push: true tags: | docker.io/metio/matrix-alertmanager-receiver:latest diff --git a/contrib/Dockerfile b/Dockerfile similarity index 100% rename from contrib/Dockerfile rename to Dockerfile