Added chmod 777

This commit is contained in:
Kirill Fedoseev 2019-10-23 17:51:06 +03:00
parent 0fa28f27a7
commit 437a70ae5b
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
FROM rustlang/rust:nightly
RUN apt-get update && \
RUN cargo --version && \
apt-get update && \
apt-get install -y curl build-essential git openssl pkg-config libssl-dev libgmp3-dev
WORKDIR /tss
@ -8,6 +9,8 @@ WORKDIR /tss
COPY ./multi-party-ecdsa/Cargo.toml /tss/
COPY ./multi-party-ecdsa/src/lib.rs /tss/src/lib.rs
RUN chmod 777 /tss/Cargo.toml
RUN cargo build --manifest-path /tss/Cargo.toml -vv --release || true
COPY ./multi-party-ecdsa /tss/