kumiori is building numerix containers #6
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: Build numerix-fenicsx-stable container | |
run-name: ${{ github.actor }} is building numerix containers | |
on: | |
push: | |
branches: | |
- andres-rev-patch | |
jobs: | |
run-docker-container: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Docker image for multiple platforms | |
run: | | |
ls -al docker | |
docker buildx build --platform linux/amd64 -t numerix:stable -f docker/fenicsx-stable.dockerfile . | |
- name: Run Docker container | |
run: | | |
docker images | |
docker info | |
# docker logs $(docker ps -lq) | |
docker run --rm numerix:stable |