Skip to content

Commit

Permalink
Add debian & ubuntu Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
  • Loading branch information
cshilwant committed Jan 12, 2024
1 parent 37d311a commit 65c49b3
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/docker-image.yml
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
6 changes: 6 additions & 0 deletions debian-distro/Dockerfile
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 file build-essential autoconf automake bison flex libssl-dev bc u-boot-tools swig python3 python3-pip wget nano
8 changes: 8 additions & 0 deletions ubuntu-distro/Dockerfile
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 file 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

0 comments on commit 65c49b3

Please sign in to comment.