Skip to content

Commit

Permalink
Fix Dockerfile in prover.
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Apr 2, 2024
1 parent 71c0b4b commit a643650
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/prover/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ RUN npm install -g n
RUN n 18
RUN npm install -g yarn snarkjs

RUN git clone https://github.com/zkemail/email-wallet.git
WORKDIR /email-wallet/packages/prover
RUN git clone https://github.com/zkemail/ether-email-auth.git
WORKDIR /ether-email-auth/packages/prover
RUN pip install -r requirements.txt
RUN cp ./circom_proofgen.sh /root
WORKDIR /root
RUN ls /root
# RUN mkdir params
# RUN cp /email-wallet/packages/prover/params/account_creation.wasm /root/params
# RUN cp /email-wallet/packages/prover/params/account_init.wasm /root/params
Expand All @@ -29,6 +30,7 @@ RUN mkdir params
WORKDIR /root/params
RUN gdown "https://drive.google.com/uc?id=1ky3XyabnBFwcyBoWBimhoePT9kbFyEBR"
RUN unzip params.zip
RUN mv params/* /root/params
WORKDIR /root
RUN ls params
# RUN mv build params
Expand Down

0 comments on commit a643650

Please sign in to comment.