From eaee0305f089b900cba000b5669fb6cceb22fa65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20F=2E=20Jim=C3=A9nez=2E=20S?= Date: Fri, 18 Aug 2023 16:02:40 -0500 Subject: [PATCH 1/2] Create docker-image.yml --- .github/workflows/docker-image.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..4dcda25 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,22 @@ +name: Docker Image CI + +on: + push: + branches: [ "v9.16" ] + pull_request: + branches: [ "v9.16" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: | + docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-bind9 + docker buildx inspect --bootstrap + docker buildx build --platform=linux/arm64,linux/amd64 --tag my-image-name:$(date +%s) -f ./Dockerfile . + shell: bash From 5172c7cb6870f6876a45ba778a8d6d104b1de26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20F=2E=20Jim=C3=A9nez=2E=20S?= Date: Wed, 23 Aug 2023 15:10:02 -0500 Subject: [PATCH 2/2] Create README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e79802 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# bind9-docker +Read only mirror of https://gitlab.isc.org/isc-projects/bind9-docker, please submit issues and merge requests in the GitLab. +Any issues and merge requests opened here will be closed without a comment. + +This adds a basic docker build using buildx for multiplatform support.