add base image

This commit is contained in:
Kevaundray Wedderburn
2025-05-11 17:26:51 +01:00
parent 149cfb7a35
commit fbe3d70e4b
2 changed files with 90 additions and 0 deletions

35
.github/workflows/check_base_image.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Check Base Docker Image
on:
push:
branches:
- master
paths:
- 'docker/base/**'
- '.github/workflows/check_base_image.yml'
pull_request:
branches:
- master
paths:
- 'docker/base/**'
- '.github/workflows/check_base_image.yml'
workflow_dispatch:
jobs:
build_base_image:
name: Build Base Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker base image
run: |
docker build \
--file docker/base/Dockerfile.base \
--tag ere-base-check:latest \
.