-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 904 Bytes
/
docker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Docker Image Build Check
on:
push:
branches:
- main
paths:
- '**/Dockerfile'
- '**/*.dockerignore'
pull_request:
branches:
- main
paths:
- '**/Dockerfile'
- '**/*.dockerignore'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker images
run: |
# Find all directories containing a Dockerfile and attempt to build each one
for dockerfile in $(find . -name 'Dockerfile'); do
image_name=$(basename $(dirname "$dockerfile"))
echo "Building Docker image for $image_name..."
docker build -t "$image_name" -f "$dockerfile" "$(dirname "$dockerfile")"
done