diff options
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/yeet/yeet.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/yeet/yeet.go b/internal/yeet/yeet.go index e769cf6..25ded2f 100644 --- a/internal/yeet/yeet.go +++ b/internal/yeet/yeet.go @@ -93,5 +93,6 @@ func DockerTag(ctx context.Context, org, repo, image string) string { // DockerBuild builds a docker image with the given working directory and tag. func DockerBuild(ctx context.Context, dir, tag string, args ...string) { args = append([]string{"build", "-t", tag}, args...) + args = append(args, ".") ShouldWork(ctx, nil, dir, "docker", args...) } |
