Initial commit to merge documentation of ReadMe and set up Docker CLI #1
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
name: 'Docker Build (Ubuntu)' | |
on: [push] | |
#on: | |
# push: | |
# paths: | |
# - 'containers/Dockerfile' | |
jobs: | |
build-apptainer-image: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
max-parallel: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Test Docker Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: containers/Dockerfile | |
push: false | |
tags: ${{ env.TEST_TAG }} | |
- name: Test Docker | |
run: | | |
docker run --rm ${{ env.TEST_TAG }} |