mirror of https://github.com/docker/docs.git
vendor: github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
04a470d054
commit
1d0a3092d8
|
@ -37,7 +37,7 @@ $ docker build --check .
|
|||
<td>The 'as' keyword should match the case of the 'from' keyword</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="./no-empty-continuations/">NoEmptyContinuations</a></td>
|
||||
<td><a href="./no-empty-continuation/">NoEmptyContinuation</a></td>
|
||||
<td>Empty continuation lines will become errors in a future release</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: NoEmptyContinuations
|
||||
title: NoEmptyContinuation
|
||||
description: Empty continuation lines will become errors in a future release
|
||||
aliases:
|
||||
- /go/dockerfile/rule/no-empty-continuations/
|
||||
- /go/dockerfile/rule/no-empty-continuation/
|
||||
---
|
||||
|
||||
## Output
|
|
@ -1,5 +1,5 @@
|
|||
# github.com/moby/moby v26.1.2+incompatible
|
||||
# github.com/moby/buildkit v0.14.0-rc2.0.20240610193248-7da4d591c4dc
|
||||
# github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b
|
||||
# github.com/docker/buildx v0.14.1
|
||||
# github.com/docker/cli v26.1.4+incompatible
|
||||
# github.com/docker/compose/v2 v2.27.0
|
||||
|
|
4
go.mod
4
go.mod
|
@ -9,7 +9,7 @@ require (
|
|||
github.com/docker/cli v26.1.4+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.27.0 // indirect
|
||||
github.com/docker/scout-cli v1.9.3 // indirect
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240610193248-7da4d591c4dc // indirect
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b // indirect
|
||||
github.com/moby/moby v26.1.2+incompatible // indirect
|
||||
)
|
||||
|
||||
|
@ -18,6 +18,6 @@ replace (
|
|||
github.com/docker/cli => github.com/docker/cli v26.1.3-0.20240513184838-60f2d38d5341+incompatible
|
||||
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.27.0
|
||||
github.com/docker/scout-cli => github.com/docker/scout-cli v1.9.3
|
||||
github.com/moby/buildkit => github.com/moby/buildkit v0.14.0-rc2.0.20240610193248-7da4d591c4dc
|
||||
github.com/moby/buildkit => github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b
|
||||
github.com/moby/moby => github.com/moby/moby v26.1.2+incompatible
|
||||
)
|
||||
|
|
2
go.sum
2
go.sum
|
@ -246,6 +246,8 @@ github.com/moby/buildkit v0.14.0-rc2 h1:qvl0hOKeyAWReOkksNtstQjPNaAD4jN3Dvq4r7sl
|
|||
github.com/moby/buildkit v0.14.0-rc2/go.mod h1:/ZJNHNVso1nf063XlDhEkNEcRNW19utVpUKixCUo9Ks=
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240610193248-7da4d591c4dc h1:D/QzYP+52V4IzxMvcWe8ppgg0XptfI4/JCd7ry79gqY=
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240610193248-7da4d591c4dc/go.mod h1:1XssG7cAqv5Bz1xcGMxJL123iCv5TYN4Z/qf647gfuk=
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b h1:n06ACmuRYPZLR6DbQvVPDRGvqWK7gGCRJjMEzGTemzs=
|
||||
github.com/moby/buildkit v0.14.0-rc2.0.20240611065153-eed17a45c62b/go.mod h1:1XssG7cAqv5Bz1xcGMxJL123iCv5TYN4Z/qf647gfuk=
|
||||
github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc=
|
||||
github.com/moby/moby v24.0.2+incompatible h1:yH+5dRHH1x3XRKzl1THA2aGTy6CHYnkt5N924ADMax8=
|
||||
github.com/moby/moby v24.0.2+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
|
||||
|
|
Loading…
Reference in New Issue