From 0a45ec5c1bb5daaeb2801a67baa1066a72746f2f Mon Sep 17 00:00:00 2001 From: Juan Osorio Robles Date: Mon, 9 May 2022 09:21:46 +0300 Subject: [PATCH] Change name of Containerfile to Dockerfile (#52) Dockerfile is a fairly known standard, and while Containerfile is also valid, it isn't recognized by Renovate. By renaming this file we ensure we can get automated updates with renovate. Signed-off-by: Juan Antonio Osorio --- .github/workflows/release-latest.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- Makefile | 4 ++-- images/audittail/{Containerfile => Dockerfile} | 0 .../{Containerfile.dockerignore => Dockerfile.dockerignore} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename images/audittail/{Containerfile => Dockerfile} (100%) rename images/audittail/{Containerfile.dockerignore => Dockerfile.dockerignore} (100%) diff --git a/.github/workflows/release-latest.yml b/.github/workflows/release-latest.yml index 9a5f2aaa..33b373fe 100644 --- a/.github/workflows/release-latest.yml +++ b/.github/workflows/release-latest.yml @@ -12,4 +12,4 @@ jobs: with: name: audittail tag: latest - dockerfile_path: images/audittail/Containerfile \ No newline at end of file + dockerfile_path: images/audittail/Dockerfile \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc7157d2..3634ad51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,4 +11,4 @@ jobs: with: name: audittail tag: ${GITHUB_REF_NAME} - dockerfile_path: images/audittail/Containerfile \ No newline at end of file + dockerfile_path: images/audittail/Dockerfile \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76e0d8b9..d919f31c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: uses: docker/build-push-action@v3 with: context: . - file: ./images/audittail/Containerfile + file: ./images/audittail/Dockerfile push: false tags: gchr.io/metal-toolbox/audittail:latest diff --git a/Makefile b/Makefile index 73410e15..00eaee7d 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ vendor: image: audittail-image audittail-image: - $(CONTAINER_BUILD_CMD) -f images/audittail/Containerfile . -t $(AUDITTAIL_CONTAINER_IMAGE_NAME):$(CONTAINER_TAG) + $(CONTAINER_BUILD_CMD) -f images/audittail/Dockerfile . -t $(AUDITTAIL_CONTAINER_IMAGE_NAME):$(CONTAINER_TAG) # Tools setup $(TOOLS_DIR): @@ -65,4 +65,4 @@ $(TOOLS_DIR)/golangci-lint: $(TOOLS_DIR) BINDIR=$(TOOLS_DIR) && \ curl -sfL $$URL/$$VERSION/install.sh | sh -s $$VERSION $(TOOLS_DIR)/golangci-lint version - $(TOOLS_DIR)/golangci-lint linters \ No newline at end of file + $(TOOLS_DIR)/golangci-lint linters diff --git a/images/audittail/Containerfile b/images/audittail/Dockerfile similarity index 100% rename from images/audittail/Containerfile rename to images/audittail/Dockerfile diff --git a/images/audittail/Containerfile.dockerignore b/images/audittail/Dockerfile.dockerignore similarity index 100% rename from images/audittail/Containerfile.dockerignore rename to images/audittail/Dockerfile.dockerignore