risc0 / risc0-foundry-template

Template for integrating RISC Zero and Ethereum using Foundry and Bonsai
https://risczero.com
90 stars 53 forks source link

Dockerfile optimization #49

Closed criadoperez closed 3 months ago

criadoperez commented 1 year ago

In the Dockerfile line 8 we have:

COPY rust-toolchain.toml .

And then on line 12:

COPY . . 

which copies the same file again. It would more efficient to simply make the COPY . . first and not do the COPY rust-toolchain.toml.

nategraf commented 3 months ago

We decided to remove the Dockerfile from the repo. Thank you for opening this issue!