Skip to content

Commit d479b92

Browse files
Dockerfile: Use parsec-tool's recently added RSA-PSS functionality
Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
1 parent 25ad783 commit d479b92

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/docker_image/parsec-openssl-provider-test.Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ ENV PARSEC_SERVICE_ENDPOINT="unix:/tmp/parsec.sock"
3131

3232
RUN git clone https://github.com/parallaxsecond/parsec.git --branch 1.3.0 \
3333
&& cd parsec \
34-
&& cargo build --features "mbed-crypto-provider,direct-authenticator"
34+
&& cargo build --features "mbed-crypto-provider,direct-authenticator" \
35+
&& cd ..
3536

36-
RUN cargo install parsec-tool
37+
RUN git clone https://github.com/parallaxsecond/parsec-tool.git --branch main \
38+
&& cd parsec-tool \
39+
&& cargo build \
40+
&& cp target/debug/parsec-tool /opt/rust/bin/parsec-tool

0 commit comments

Comments
 (0)