Skip to content

Commit

Permalink
Merge pull request #966 from tonistiigi/csv-fix
Browse files Browse the repository at this point in the history
hack: fix csv values
  • Loading branch information
tonistiigi committed Apr 27, 2019
2 parents 3c78a9c + dcacc39 commit 8c0fa8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/dockerfile/cmd/dockerfile-frontend/hack/release
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ case $TYP in
--opt platform=$PLATFORMS \
--opt "build-arg:CHANNEL=$TAG" \
--opt "build-arg:BUILDTAGS=$buildTags" \
--output type=image,name=$publishedNames,$pushFlag
--output type=image,\"name=$publishedNames\",$pushFlag
;;
"daily")
if [ -z $DAILY_TARGETS ]; then
Expand Down
4 changes: 2 additions & 2 deletions hack/images
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ image() {
--local context=. --local dockerfile=. \
--opt filename=./hack/dockerfiles/test.buildkit.Dockerfile \
--opt platform=$PLATFORMS \
--output type=image,name=$REPO:$TAG$tagLatest,$pushFlag
--output type=image,\"name=$REPO:$TAG$tagLatest\",$pushFlag

buildctl build $progressFlag --frontend=dockerfile.v0 \
--local context=. --local dockerfile=. \
--opt target=rootless \
--opt filename=./hack/dockerfiles/test.buildkit.Dockerfile \
--opt platform=$PLATFORMS \
--output type=image,name=$REPO:$TAG-rootless$tagLatestRootless,$pushFlag
--output type=image,\"name=$REPO:$TAG-rootless$tagLatestRootless\",$pushFlag
}

case $buildmode in
Expand Down

0 comments on commit 8c0fa8f

Please sign in to comment.