-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ RUN apt install git gcc musl-dev make -y | |
RUN go install github.com/google/wire/cmd/wire@latest | ||
WORKDIR /go/src/github.com/devtron-labs/devtron | ||
ADD . /go/src/github.com/devtron-labs/devtron/ | ||
# TODO Asutosh: revert after dev test | ||
ADD ./vendor/github.com/Microsoft/ /go/src/github.com/devtron-labs/devtron/vendor/github.com/microsoft/ | ||
Check notice Code scanning / SonarCloud Prefer COPY over ADD for copying local resources Low
Replace this ADD instruction with a COPY instruction. See more on SonarCloud
|
||
RUN GOOS=linux make build-all | ||
|
||
# uncomment this post build arg | ||
|