bake: use no-cache-filter for outdated stage

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-06-05 16:25:05 +02:00
parent 3e9117b7e2
commit 0f6a0eb2d4
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
2 changed files with 1 additions and 5 deletions

View File

@ -110,10 +110,7 @@ target "mod-outdated" {
inherits = ["_common"]
dockerfile = "./dockerfiles/Dockerfile.vendor"
target = "outdated"
args = {
// used to invalidate cache (more info https://github.com/moby/buildkit/issues/1213)
UUID = uuidv4()
}
no-cache-filter = ["outdated"]
output = ["type=cacheonly"]
}

View File

@ -35,7 +35,6 @@ EOT
FROM psampaz/go-mod-outdated:${MODOUTDATED_VERSION} AS go-mod-outdated
FROM base AS outdated
ARG UUID
RUN --mount=target=.,rw \
--mount=target=/go/pkg/mod,type=cache \
--mount=from=go-mod-outdated,source=/home/go-mod-outdated,target=/usr/bin/go-mod-outdated \