enkb123 / rosetta-io

0 stars 0 forks source link

Rust #20

Closed nicholaides closed 1 week ago

nicholaides commented 2 months ago

Notes:

In the dockerfile, you'll need to copy the Cargo.toml before calling cargo install (or whatever the command for installing dependencies) but you'll want to do that before copying all the files. Something along the lines of this:

COPY ./Cargo.toml .
RUN cargo install
COPY ./ .  # copy the rest