update baseos with pinned version of scipy #3
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 image build | |
on: | |
push: | |
branches: [ "ngeet-2024" ] | |
pull_request: | |
branches: [ "ngeet-2024" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Docker Setup Buildx | |
uses: docker/[email protected] | |
env: | |
DOCKER_CONFIG: docker/baseos/gcc1120 | |
#with: | |
# Buildx version. (eg. v0.3.0) | |
#version: # optional | |
# Sets the builder driver to be used | |
#driver: # optional, default is docker-container | |
# List of additional driver-specific options. (eg. image=moby/buildkit:master) | |
#driver-opts: # optional | |
# BuildKit daemon flags | |
#buildkitd-flags: # optional, default is --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host | |
# BuildKit daemon config file | |
#buildkitd-config: # optional | |
# Inline BuildKit daemon config | |
#buildkitd-config-inline: # optional | |
# Sets up docker build command as an alias to docker buildx build | |
#install: # optional, default is false | |
# Switch to this builder instance | |
#use: # optional, default is true | |
# Optional address for docker socket or context from `docker context ls` | |
#endpoint: # optional | |
# Fixed platforms for current node. If not empty, values take priority over the detected ones | |
#platforms: # optional | |
# Append additional nodes to the builder | |
#append: # optional | |
# Cache buildx binary to GitHub Actions cache backend | |
#cache-binary: # optional, default is true | |
# Cleanup temp files and remove builder at the end of a job | |
#cleanup: # optional, default is true | |
# BuildKit daemon config file | |
#config: # optional | |
# Inline BuildKit daemon config | |
#config-inline: # optional | |