Specified explicit manifest-path

This commit is contained in:
Kirill Fedoseev 2019-10-23 12:58:32 +03:00
parent aed0f59097
commit 6d0d9f4617
1 changed files with 2 additions and 6 deletions

View File

@ -12,14 +12,10 @@ WORKDIR /tss
COPY ./multi-party-ecdsa/Cargo.toml /tss/
COPY ./multi-party-ecdsa/src/lib.rs /tss/src/lib.rs
RUN ls /tss
RUN ls .
RUN pwd
RUN cargo build --release || true
RUN cargo build --manifest-path /tss/Cargo.toml --release || true
COPY ./multi-party-ecdsa /tss/
RUN cargo build --release
RUN cargo build --manifest-path /tss/Cargo.toml --release
CMD echo Done