We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 894ce91 commit 36b3cbfCopy full SHA for 36b3cbf
Dockerfile
@@ -0,0 +1,12 @@
1
+FROM rustlang/rust:nightly as build
2
+WORKDIR multi-party-ecdsa
3
+COPY ./ ./
4
+RUN cargo build --release --examples
5
+
6
+FROM ubuntu:18.04
7
8
+COPY --from=build /multi-party-ecdsa/target/release/examples/sm_manager .
9
+COPY --from=build /multi-party-ecdsa/target/release/examples/gg18_keygen_client .
10
+COPY --from=build /multi-party-ecdsa/target/release/examples/gg18_sign_client .
11
12
+EXPOSE 8001
0 commit comments