Add GitHub Actions workflow for building Docker image
All checks were successful
Build Docker Image / build (push) Successful in 5s

This commit is contained in:
2025-12-16 08:40:05 +01:00
parent 6325017ba7
commit 5723140bce

View File

@@ -0,0 +1,16 @@
name: Build Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build Docker image
run: |
docker build -t skoszewski/azure-cli:latest .