Skip to content

Commit

Permalink
bump to buildkit v0.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Suraci <[email protected]>
  • Loading branch information
vito committed Mar 26, 2020
1 parent ba36751 commit 230df3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.4 AS task
FROM moby/buildkit:v0.7.0 AS task
COPY --from=builder /assets/task /usr/bin/
COPY --from=builder /assets/build /usr/bin/
COPY bin/setup-cgroups /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-buildkit.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if ! which buildctl >/dev/null || ! which buildkitd >/dev/null; then
BUILDKIT_VERSION=0.6.4
BUILDKIT_VERSION=0.7.0
BUILDKIT_URL=https://github.com/moby/buildkit/releases/download/v$BUILDKIT_VERSION/buildkit-v$BUILDKIT_VERSION.linux-amd64.tar.gz

curl -fL "$BUILDKIT_URL" | tar zxf -
Expand Down

0 comments on commit 230df3b

Please sign in to comment.