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