You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by ab...@apache.org on 2022/08/09 07:07:28 UTC

[incubator-devlake] branch main updated (998d84a1 -> 71481e23)

This is an automated email from the ASF dual-hosted git repository.

abeizn pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


    from 998d84a1 feat(frontend): add tapd config-ui
     new 7871d952 fix: add git to lake-builder
     new 1c50497f fix: add missing swag for lake-builder
     new 71481e23 fix: version is missing in docker image

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Dockerfile                     | 2 +-
 devops/lake-builder/Dockerfile | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)


[incubator-devlake] 03/03: fix: version is missing in docker image

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git

commit 71481e23dd745e77183eb65dc4f8c931250fe38f
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Tue Aug 9 14:37:38 2022 +0800

    fix: version is missing in docker image
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 7600f01b..81250fbe 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,7 +23,7 @@
 #While incubation status is not necessarily a reflection of the completeness or stability of the code,
 #it does indicate that the project has yet to be fully endorsed by the ASF.
 
-FROM mericodev/lake-builder:0.0.5 as builder
+FROM mericodev/lake-builder:v0.0.7 as builder
 
 # docker build --build-arg GOPROXY=https://goproxy.io,direct -t mericodev/lake .
 ARG GOPROXY=


[incubator-devlake] 02/03: fix: add missing swag for lake-builder

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git

commit 1c50497f684f37633b25f0dd6e49ef3c06b0ed26
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Tue Aug 9 14:20:49 2022 +0800

    fix: add missing swag for lake-builder
---
 devops/lake-builder/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/devops/lake-builder/Dockerfile b/devops/lake-builder/Dockerfile
index 12b8a8d3..63e24cd0 100644
--- a/devops/lake-builder/Dockerfile
+++ b/devops/lake-builder/Dockerfile
@@ -19,3 +19,4 @@ FROM golang:1.17-alpine3.15 as builder
 #RUN apk add --update gcc=130.2.1_pre1-r3 g++=10.2.1_pre1-r3
 RUN apk update && apk upgrade && apk add --no-cache tzdata libgit2-dev gcc g++ make tar git
 RUN go install github.com/vektra/mockery/v2@v2.12.3
+RUN go install github.com/swaggo/swag/cmd/swag@v1.8.4


[incubator-devlake] 01/03: fix: add git to lake-builder

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git

commit 7871d952d678ee05d066fbdf0f685b33de27ce2a
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Tue Aug 9 12:19:26 2022 +0800

    fix: add git to lake-builder
---
 devops/lake-builder/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devops/lake-builder/Dockerfile b/devops/lake-builder/Dockerfile
index c8efe134..12b8a8d3 100644
--- a/devops/lake-builder/Dockerfile
+++ b/devops/lake-builder/Dockerfile
@@ -17,5 +17,5 @@
 # current tag: mericodev/lake-builder:0.0.5
 FROM golang:1.17-alpine3.15 as builder
 #RUN apk add --update gcc=130.2.1_pre1-r3 g++=10.2.1_pre1-r3
-RUN apk update && apk upgrade && apk add --no-cache tzdata libgit2-dev gcc g++ make tar
-RUN go install github.com/vektra/mockery/v2@latest
+RUN apk update && apk upgrade && apk add --no-cache tzdata libgit2-dev gcc g++ make tar git
+RUN go install github.com/vektra/mockery/v2@v2.12.3