Skip to content

Commit

Permalink
Change name of Containerfile to Dockerfile (#52)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
JAORMX authored May 9, 2022
1 parent 26d6de6 commit 0a45ec5
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
with:
name: audittail
tag: latest
dockerfile_path: images/audittail/Containerfile
dockerfile_path: images/audittail/Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
with:
name: audittail
tag: ${GITHUB_REF_NAME}
dockerfile_path: images/audittail/Containerfile
dockerfile_path: images/audittail/Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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
$(TOOLS_DIR)/golangci-lint linters
File renamed without changes.
File renamed without changes.

0 comments on commit 0a45ec5

Please sign in to comment.