You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `image-repository` | The Docker image repository to push the build image and cached layers. | Yes | `temporary/my-image` |
50
50
| `context` | The Docker build context directory. Defaults to `.`. | No | `./my-image` |
51
+
| `dockerfile` | Path to the Dockerfile relative to the [`working-directory`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsworking-directory). Defaults to `${context}/Dockerfile`. | No | `./my-image.Dockerfile` |
51
52
| `build-args` | List of [build-time variables](https://docs.docker.com/reference/cli/docker/buildx/build/#build-arg). | No | <pre><code>HTTP_PROXY=http://10.20.30.2:1234 FTP_PROXY=http://40.50.60.5:4567</code></pre> |
52
53
| `build-secrets` | List of [secrets](https://docs.docker.com/engine/reference/commandline/buildx_build/#secret) to expose to the build. | No | <pre><code>GIT_AUTH_TOKEN=mytoken</code></pre> |
53
54
| `from-scratch` | Do not read from the cache when building the image. Writes to caches will still occur. Defaults to `false`. | No | `false` |
0 commit comments