Open sleeply7777 opened 1 week ago
Can u share your docker config file and an elaborated process on how are you doing that.
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
sudo wget curl git build-essential libssl-dev pkg-config clang \
&& rm -rf /var/lib/apt/lists/*
CMD ["bash"]
Based on this base image, I created a container and installed Rust Cargo 1.79.0 as well as build-essential, pkg-config, and libssl-dev inside the container. I used the 0.3.2 tag to create the prover. The first execution showed a panic with
'time_zone': iana_time_zone::get_timezone().unwrap()
I resolved this issue by apt install tzdata
. On restarting, the X509VerifyResult issue occurred.
My device is an Apple M2.
ubuntu 22.04 apt update && apt install build-essential pkg-config git -y git checkout 0.3.2
Where is the problem? What needs to be installed, or is it that it can't run inside the container?