Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.