Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into ngeet-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
glemieux committed Aug 27, 2024
2 parents 4ac364e + c721f36 commit 18f32ce
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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

0 comments on commit 18f32ce

Please sign in to comment.