From e11662e255a296c89d3838573006628683d1e0fc Mon Sep 17 00:00:00 2001 From: Charles Duffy Date: Tue, 27 Sep 2022 15:12:15 -0500 Subject: [PATCH] Bump buildkit to 0.10.4 Motivating change is moby/buildkit#2926, whereby errors were not correctly propagated. Signed-off-by: Charles Duffy --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aeac881..bcaab1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ FROM concourse/golang-builder AS builder RUN go build -o /assets/task ./cmd/task RUN go build -o /assets/build ./cmd/build -FROM moby/buildkit:v0.10.3 AS task +FROM moby/buildkit:v0.10.4 AS task COPY --from=builder /assets/task /usr/bin/ COPY --from=builder /assets/build /usr/bin/ COPY bin/setup-cgroups /usr/bin/