From 7f2a90b627d3c0524666dcb4c558568040b716f6 Mon Sep 17 00:00:00 2001 From: Sha3n Date: Sun, 25 Jun 2023 21:43:01 +0800 Subject: [PATCH] [R4R]: Hotfix/fix releasev0.4.1 beta.0 (#1109) (#1110) * Hotfix/fix releasev0.4.1 beta.0 (#1109) * fix: remove hsm credential in log * update changelog * [R4R]: fix changelog title (#1028) [fix]: fix changelog title * [fix]: fix tss docker file --------- Co-authored-by: bradyjoestar Co-authored-by: Agnar Song * [fix]: append v0.4.1 change log --------- Co-authored-by: bradyjoestar Co-authored-by: Agnar Song Co-authored-by: Raymond <6427270+wukongcheng@users.noreply.github.com> --- CHANGELOG.md | 5 +++++ tss/Dockerfile | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c8aaecc0..a6fcff160 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## [v0.4.1](https://github.com/mantlenetworkio/mantle/commits/v0.4.1) - 2023-06-25 + +### Bug Fixes +- Remove hsm credential in log and fixed tss docker file compile bug([#1109](https://github.com/mantlenetworkio/mantle/pull/1109)) + ## [v0.4.1-beta.0](https://github.com/mantlenetworkio/mantle/commits/v0.4.1-beta.0) - 2023-06-19 ### Bug Fixes diff --git a/tss/Dockerfile b/tss/Dockerfile index 8de20c731..c21654a31 100644 --- a/tss/Dockerfile +++ b/tss/Dockerfile @@ -3,9 +3,7 @@ FROM golang:1.19-alpine3.15 as builder RUN apk add --no-cache make gcc musl-dev linux-headers git -COPY ./bss-core /go/bss-core -COPY ./l2geth /go/l2geth -COPY ./tss/docker.go.work /go/go.work +COPY . /app/ WORKDIR /app/tss RUN make build