-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
- Loading branch information
Showing
3 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
# Publish `main` as Docker `latest` image. | ||
branches: | ||
- main | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
|
||
jobs: | ||
# Run tests. | ||
# See also https://docs.docker.com/docker-hub/builds/automated-testing/ | ||
# Push image to GitHub Packages. | ||
push: | ||
|
||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Multi-arch | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y qemu binfmt-support qemu-user-static | ||
docker pull multiarch/qemu-user-static | ||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
if: github.event_name != 'pull_request' | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build Distributions | ||
run: | | ||
for distro in $(ls -d *-*) | ||
do | ||
docker build "$distro" --tag "$distro" | ||
done | ||
- name: Push image to GitHub Container Registry | ||
run: | | ||
# Strip git ref prefix from version | ||
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
# Strip "v" prefix from tag name | ||
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
# Use Docker `latest` tag convention | ||
[ "$VERSION" == "main" ] && VERSION=latest | ||
# Push apps | ||
for IMAGE_NAME in $(ls -d *-*) | ||
do | ||
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME | ||
# Change all uppercase to lowercase | ||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | ||
echo IMAGE_ID=$IMAGE_ID | ||
echo VERSION=$VERSION | ||
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION | ||
docker push $IMAGE_ID:$VERSION | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ARG BASE_DISTRO=amd64/debian:stable-slim | ||
FROM $BASE_DISTRO | ||
LABEL org.opencontainers.image.source https://github.com/cshilwant/docker-images/ubuntu | ||
RUN export DEBIAN_FRONTEND=noninteractive; apt-get update | ||
RUN export DEBIAN_FRONTEND=noninteractive; \ | ||
apt-get install -y --no-install-recommends build-essential autoconf automake bison flex libssl-dev bc u-boot-tools swig python3 python3-pip wget nano |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ARG BASE_DISTRO=amd64/ubuntu:22.04 | ||
FROM $BASE_DISTRO | ||
LABEL org.opencontainers.image.source https://github.com/cshilwant/docker-images/ubuntu | ||
RUN export DEBIAN_FRONTEND=noninteractive; apt-get update | ||
RUN export DEBIAN_FRONTEND=noninteractive; \ | ||
apt-get install -y --no-install-recommends build-essential autoconf automake bison flex libssl-dev bc u-boot-tools swig python3 python3-pip wget nano | ||
RUN export DEBIAN_FRONTEND=noninteractive; \ | ||
pip3 install jsonschema pyelftools |