Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhi committed Oct 15, 2024
1 parent 6714845 commit e6a6266
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN NFILES=$(curl -s "https://releases.quilibrium.com/release" | grep "linux-amd
RUN cp "node-${NODE_VERSION}-linux-amd64" "node/node"
RUN cp "node-${NODE_VERSION}-linux-amd64.dgst" "node/node.dgst"
RUN for i in $(seq 1 ${MAX_KEY_ID}); do \
if [ -f node/node-${NODE_VERSION}-linux-amd64.dgst.sig.${i} ]; then \
if [ -f node-${NODE_VERSION}-linux-amd64.dgst.sig.${i} ]; then \
cp "node-${NODE_VERSION}-linux-amd64.dgst.sig.${i}" "node/node.dgst.sig.${i}"; \
fi \
done
Expand Down Expand Up @@ -67,9 +67,13 @@ COPY --from=build /opt/ceremonyclient/node/node.dgst /usr/local/bin
COPY --from=build /opt/ceremonyclient/node/node.dgst.sig.* /usr/local/bin

COPY --from=build /opt/ceremonyclient/client/qclient /usr/local/bin
COPY --from=build /opt/ceremonyclient/client/qclient.dgst /usr/local/bin
COPY --from=build /opt/ceremonyclient/client/qclient.dgst.sig.* /usr/local/bin

COPY --from=build /go/bin/grpcurl /usr/local/bin

RUN chmod +x /usr/local/bin/node && chmod +x /usr/local/bin/qclient

WORKDIR /root

ENTRYPOINT ["node"]

0 comments on commit e6a6266

Please sign in to comment.