This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"os" | |
"os/signal" | |
"syscall" | |
client "github.com/moby/buildkit/client" | |
"github.com/moby/buildkit/client/llb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
participant Client as C | |
participant Server as S | |
C -> S : NewContainerRequest | |
C -> S : InitMessage | |
S -> C : StartedMessage | |
group Process IO | |
loop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"os" | |
"os/signal" | |
"syscall" | |
buildkitClient "github.com/moby/buildkit/client" | |
"github.com/moby/buildkit/client/llb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/build.gradle b/build.gradle | |
index b35e9a3..c8b2ba3 100644 | |
--- a/build.gradle | |
+++ b/build.gradle | |
@@ -33,7 +33,7 @@ dependencies { | |
compile 'com.sun.jersey:jersey-server:1.11' | |
compile 'com.sun.jersey:jersey-servlet:1.11' | |
compile 'org.slf4j:slf4j-api:1.6.4' | |
- compile('com.amazonaws:aws-java-sdk:1.3.11') { | |
+ compile('com.amazonaws:aws-java-sdk:1.4.4.1') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use File::Temp; | |
use Getopt::Long; | |
my($project, $component); | |
my $type = "Bug"; | |
GetOptions( | |
'project=s' => \$project, | |
'component=s' => \$component, |