Skip to content

Commit

Permalink
Merge pull request #119 from japgolly/buildKitFix
Browse files Browse the repository at this point in the history
Support buildkit output with durations
  • Loading branch information
marcus-drake authored Jan 22, 2021
2 parents 143129b + 2821a62 commit 247a982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/sbtdocker/DockerBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object DockerBuild {
}

private val SuccessfullyBuilt = "^Successfully built ([0-9a-f]+)$".r
private val SuccessfullyBuiltBuildKit = ".* writing image sha256:([0-9a-f]+) done$".r
private val SuccessfullyBuiltBuildKit = ".* writing image sha256:([0-9a-f]+) .*\bdone$".r

private[sbtdocker] def buildAndTag(
imageNames: Seq[ImageName],
Expand Down

0 comments on commit 247a982

Please sign in to comment.