Skip to content

Commit

Permalink
Name and dockerfile as required inputs. (#12161)
Browse files Browse the repository at this point in the history
* Name and dockerfile path of image to build must be provided in a call to image-builder. These inputs must not be optional.

* Resolve conflicts.
./Dockerfile as default dockerfile path.

* Default to github repository name

---------

Co-authored-by: Kacper Małachowski <[email protected]>
  • Loading branch information
dekiel and KacperMalachowski authored Nov 20, 2024
1 parent 15fa11d commit dc5dec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/image-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:
description: Name of the build image
required: false
type: string
default: test-infra/ginkgo
default: ${{ github.event.repository.name }}
dockerfile:
description: Path to the dockerfile used to build docker image
required: false
type: string
default: "images/ginkgo/Dockerfile"
default: "./Dockerfile"
context:
description: Build context to build container from
required: false
Expand Down

0 comments on commit dc5dec9

Please sign in to comment.