Skip to content

Commit

Permalink
Import
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecmd committed Jul 1, 2024
0 parents commit a2efc6d
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Docker Container

on:
push:
branches:
- main
schedule:
# Build every 6 hours
- cron: "0 */6 * * *"
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set BIRD version
run: echo "BIRD_VERSION=$(curl -s 'https://dl.fedoraproject.org/pub/epel/9/Everything/x86_64/Packages/b/' | awk -F'"' '/>bird-/ {print $6; exit}' | sed -e 's/bird-//' -e 's/\.el.*.rpm//')" >> $GITHUB_ENV
- name: Extract BIRD semver
run: |
echo '${{ env.BIRD_VERSION }}' | \
sed -E 's/^([0-9]+)\.([0-9]+).*/BIRD_MAJOR_VERSION=\1\nBIRD_MINOR_VERSION=\2/' \
>> $GITHUB_ENV
- name: Print target BIRD version
run: |
echo 'Full version: ${{ env.BIRD_VERSION }}'
echo 'Major: ${{ env.BIRD_MAJOR_VERSION }}'
echo 'Minor: ${{ env.BIRD_MINOR_VERSION }}'
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
file: Containerfile
build-args: |
BIRD_VERSION=${{ env.BIRD_VERSION }}
tags: |
ghcr.io/sonix-network/bird:${{ env.BIRD_VERSION }}
ghcr.io/sonix-network/bird:${{ }}
ghcr.io/sonix-network/bird:latest
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.*.sw?
11 changes: 11 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM docker.io/library/rockylinux:9

ARG BIRD_VERSION

RUN dnf -y update && \
dnf -y upgrade && \
dnf -y install epel-release && \
dnf -y install bird-${BIRD_VERSION}.* && \
dnf clean all

ENTRYPOINT ["/usr/sbin/bird"]

0 comments on commit a2efc6d

Please sign in to comment.