Skip to content

Commit

Permalink
Update taskfile with docker build --no-cache and --progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Tit Petric committed Oct 4, 2023
1 parent a043c56 commit ba4258d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ tasks:
plugin-compiler:build:
desc: "Build plugin compiler"
cmds:
- docker build --build-arg GOLANG_CROSS=1.15-el7 -t internal/plugin-compiler-el7 -f ci/images/plugin-compiler/Dockerfile .
- docker build --build-arg GOLANG_CROSS=1.15 -t internal/plugin-compiler -f ci/images/plugin-compiler/Dockerfile .
- docker build --progress=plain --no-cache --build-arg GOLANG_CROSS=1.15-el7 -t internal/plugin-compiler-el7 -f ci/images/plugin-compiler/Dockerfile .
- docker build --progress=plain --no-cache --build-arg GOLANG_CROSS=1.15 -t internal/plugin-compiler -f ci/images/plugin-compiler/Dockerfile .

plugin-compiler:test:
desc: "Test plugin compiler"
Expand Down

0 comments on commit ba4258d

Please sign in to comment.