File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,11 @@ interface BuildContainerTaskOptions {
26
26
27
27
export class BuildContainerTask extends Task < ContainerImage > {
28
28
private container : StackContainer ;
29
- // private readonly stack: Stack;
30
29
private readonly provider : string ;
31
30
32
31
constructor ( { container, provider = 'local' } : BuildContainerTaskOptions ) {
33
32
super ( `${ container . getName ( ) } ` ) ;
34
33
this . container = container ;
35
- // this.stack = stack;
36
34
this . provider = provider ;
37
35
}
38
36
@@ -44,6 +42,7 @@ export class BuildContainerTask extends Task<ContainerImage> {
44
42
docker build ${ this . container . getContext ( ) }
45
43
-f ${ this . container . getDockerfile ( ) }
46
44
-t ${ imageId }
45
+ --progress plain
47
46
--build-arg PROVIDER=${ this . provider }
48
47
${ Object . keys ( args )
49
48
. map ( ( k ) => `--build-arg ${ k } =${ args [ k ] } ` )
You can’t perform that action at this time.
0 commit comments