add dockerfile input for monorepos

Lets a caller point at a non-default Dockerfile while keeping the
build context broader. Needed for repos with multiple binaries sharing
internal packages (api/Dockerfile + worker/Dockerfile, build context
at repo root). Empty default preserves prior behavior.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Donavan Fritz
2026-05-27 13:07:11 -05:00
parent 83ecfc3176
commit 115fa86023
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -27,6 +27,7 @@ the same tag.
|---|---|---|---| |---|---|---|---|
| `image` | yes | — | Full image name without tag (e.g. `code.fritzlab.net/fritzlab/chrony`). | | `image` | yes | — | Full image name without tag (e.g. `code.fritzlab.net/fritzlab/chrony`). |
| `context` | no | `.` | Docker build context. | | `context` | no | `.` | Docker build context. |
| `dockerfile` | no | `Dockerfile` (in context) | Path to the Dockerfile, relative to the context (or absolute under `$GITHUB_WORKSPACE`). Use for monorepos where the build context is the repo root but the Dockerfile lives in a subdir, e.g. `dockerfile: api/Dockerfile`. |
| `build-args` | no | — | Multiline `KEY=VALUE` build args. | | `build-args` | no | — | Multiline `KEY=VALUE` build args. |
| `smoke-test` | no | — | Shell command run after build. `$IMAGE` is set to `<image>:<run_number>`. Non-zero exit fails the action. | | `smoke-test` | no | — | Shell command run after build. `$IMAGE` is set to `<image>:<run_number>`. Non-zero exit fails the action. |
+9
View File
@@ -8,6 +8,14 @@ inputs:
description: Docker build context path description: Docker build context path
required: false required: false
default: . default: .
dockerfile:
description: |
Path to the Dockerfile, relative to the context (or absolute under
$GITHUB_WORKSPACE). Defaults to "Dockerfile" inside the context.
Use this for monorepos where the build context is the repo root but
the Dockerfile lives in a subdir (e.g. dockerfile: api/Dockerfile).
required: false
default: ''
build-args: build-args:
description: Multiline KEY=VALUE pairs passed to docker build description: Multiline KEY=VALUE pairs passed to docker build
required: false required: false
@@ -29,6 +37,7 @@ runs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: ${{ inputs.context }} context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }}
push: false push: false
load: true load: true
provenance: false provenance: false