Skip to content

Commit

Permalink
chore: update build tasks and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
madhavilosetty-intel committed Nov 15, 2024
1 parent f83ac6c commit a800529
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

* enable config v2 from console ([a765f4c](https://github.com/open-amt-cloud-toolkit/rpc-go/commit/a765f4c2c279f6fcb511d48cbca8be02e2762758))

## [2.40.1](https://github.com/open-amt-cloud-toolkit/rpc-go/compare/v2.40.0...v2.40.1) (2024-10-31).
## [2.40.1](https://github.com/open-amt-cloud-toolkit/rpc-go/compare/v2.40.0...v2.40.1) (2024-10-31)


### Bug Fixes
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ RUN apk update && apk upgrade && apk add --no-cache git
WORKDIR /rpc
COPY . .

# Install go-licenses
RUN go install github.com/google/go-licenses@latest
# Generate license files
RUN go-licenses save ./... --save_path=licenses

# Build rpc
RUN CGO_ENABLED=0 LDFLAGS="-s -w" GOOS=linux GOARCH=amd64 go build -o /build/rpc ./cmd/main.go

Expand All @@ -19,6 +24,6 @@ LABEL license='SPDX-License-Identifier: Apache-2.0' \

COPY --from=builder /build/rpc /rpc
#go-licenses will install when ./build.sh is executed
COPY --from=builder /rpc/licensefiles /licensefiles
COPY --from=builder /rpc/licenses /licenses

ENTRYPOINT ["/rpc"]

0 comments on commit a800529

Please sign in to comment.