-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit to merge documentation of ReadMe and set up Docker CLI
- Loading branch information
Showing
4 changed files
with
70 additions
and
26 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,29 @@ | ||
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 }} |
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
This file was deleted.
Oops, something went wrong.
File renamed without changes.