Skip to content

Commit 2973d11

Browse files
committed
chore: set --progress plain for cleaner output.
1 parent 47b0b45 commit 2973d11

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/common/src/task/build-container.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ interface BuildContainerTaskOptions {
2626

2727
export class BuildContainerTask extends Task<ContainerImage> {
2828
private container: StackContainer;
29-
// private readonly stack: Stack;
3029
private readonly provider: string;
3130

3231
constructor({ container, provider = 'local' }: BuildContainerTaskOptions) {
3332
super(`${container.getName()}`);
3433
this.container = container;
35-
// this.stack = stack;
3634
this.provider = provider;
3735
}
3836

@@ -44,6 +42,7 @@ export class BuildContainerTask extends Task<ContainerImage> {
4442
docker build ${this.container.getContext()}
4543
-f ${this.container.getDockerfile()}
4644
-t ${imageId}
45+
--progress plain
4746
--build-arg PROVIDER=${this.provider}
4847
${Object.keys(args)
4948
.map((k) => `--build-arg ${k}=${args[k]}`)

0 commit comments

Comments
 (0)