From 8832f2902db77eb9df0f862822c866cb97c2593d Mon Sep 17 00:00:00 2001 From: Jacek Tomaszewski Date: Fri, 6 Nov 2020 14:25:04 +0100 Subject: [PATCH] docs(README): Improve example of `file` option so it's obvious that it is not relative to `context` option Signed-off-by: Jacek Tomaszewski --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e92f9a..669e315 100644 --- a/README.md +++ b/README.md @@ -658,7 +658,7 @@ Following inputs can be used as `step.with` keys |---------------------|----------|------------------------------------| | `builder` | String | Builder instance (see [setup-buildx](https://github.com/docker/setup-buildx-action) action) | | `context` | String | Build's context is the set of files located in the specified [`PATH` or `URL`](https://docs.docker.com/engine/reference/commandline/build/) (default [Git context](#git-context)) | -| `file` | String | Path to the Dockerfile (default `Dockerfile`) | +| `file` | String | Path to the Dockerfile (default `./Dockerfile`) | | `build-args` | List | List of build-time variables | | `labels` | List | List of metadata for an image | | `tags` | List/CSV | List of tags |