File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 17
17
- rel/dnsdist-1.9.x
18
18
image :
19
19
- id : debian-11-pdns-base
20
- debian-release : bullseye-slim
20
+ debian-image-name : python
21
+ debian-image-tag : 3.11-slim-bullseye
21
22
- id : debian-12-pdns-base
22
- debian-release : bookworm-slim
23
+ debian-image-name : debian
24
+ debian-image-tag : bookworm-slim
23
25
fail-fast : false
24
26
runs-on : ubuntu-22.04
25
27
permissions :
36
38
run : |
37
39
docker build . --file Dockerfile \
38
40
--tag ${{ env.image-id-lowercase }}:${{ env.image-tag }} \
39
- --build-arg DEBIAN_IMAGE_TAG=${{ matrix.image.debian-release }} \
41
+ --build-arg DEBIAN_IMAGE_NAME=${{ matrix.image.debian-image-name }} \
42
+ --build-arg DEBIAN_IMAGE_TAG=${{ matrix.image.debian-image-tag }} \
40
43
--build-arg REPO_BRANCH=${{ matrix.branch-name }}
41
44
42
45
- name : Login to GitHub Container Registry
Original file line number Diff line number Diff line change
1
+ ARG DEBIAN_IMAGE_NAME
1
2
ARG DEBIAN_IMAGE_TAG
2
- FROM debian :${DEBIAN_IMAGE_TAG}
3
+ FROM ${DEBIAN_IMAGE_NAME} :${DEBIAN_IMAGE_TAG}
3
4
4
5
ARG REPO_HOME=/home/runner
5
6
ARG REPO_BRANCH=master
You can’t perform that action at this time.
0 commit comments