Skip to content

Commit 08a3da9

Browse files
committed
chore: remove redundant extension on Dockerfiles
Our Dockerfiles don't need these extensions so drop them.
1 parent 7c690ad commit 08a3da9

File tree

14 files changed

+5
-5
lines changed

14 files changed

+5
-5
lines changed

.github/workflows/build-container-images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
4444
with:
4545
context: containers/python311_alpine/
46-
file: containers/python311_alpine/Dockerfile.python311_alpine
46+
file: containers/python311_alpine/Dockerfile
4747
# push for all main branch commits
4848
push: ${{ github.event_name != 'pull_request' }}
4949
tags: ghcr.io/${{ github.repository }}/argo-python3.11.8-alpine3.19:latest,ghcr.io/${{ github.repository }}/argo-python3.11.8-alpine3.19:${{ env.VERSION_PYTHON311 }}
@@ -54,7 +54,7 @@ jobs:
5454
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
5555
with:
5656
context: containers/python312_alpine/
57-
file: containers/python312_alpine/Dockerfile.python312_alpine
57+
file: containers/python312_alpine/Dockerfile
5858
# push for all main branch commits
5959
push: ${{ github.event_name != 'pull_request' }}
6060
tags: ghcr.io/${{ github.repository }}/argo-python3.12.2-alpine3.19:latest,ghcr.io/${{ github.repository }}/argo-python3.12.2-alpine3.19:${{ env.VERSION_PYTHON312 }}

.github/workflows/containers.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: build and deploy openstack container image to registry
6767
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
6868
with:
69-
file: containers/${{ matrix.project }}/Dockerfile.${{ matrix.project }}
69+
file: containers/${{ matrix.project }}/Dockerfile
7070
build-args: OPENSTACK_VERSION=${{ env.OPENSTACK_VERSION }}
7171
pull: true # ensure we always have an up to date source
7272
push: true
@@ -110,7 +110,7 @@ jobs:
110110
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
111111
with:
112112
context: "{{defaultContext}}:containers/dnsmasq"
113-
file: Dockerfile.dnsmasq
113+
file: Dockerfile
114114
push: ${{ github.event_name != 'pull_request' }}
115115
tags: ${{ steps.meta.outputs.tags }}
116116
labels: ${{ steps.meta.outputs.labels }}
@@ -159,7 +159,7 @@ jobs:
159159
- name: build and deploy container image to registry
160160
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
161161
with:
162-
file: containers/${{ matrix.container.name }}/Dockerfile.${{ matrix.container.name }}
162+
file: containers/${{ matrix.container.name }}/Dockerfile
163163
pull: true # ensure we always have an up to date source
164164
push: true
165165
tags: ${{ steps.meta.outputs.tags }}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)