Closed criadoperez closed 6 months ago
In the Dockerfile line 8 we have:
Dockerfile
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.
COPY rust-toolchain.toml
We decided to remove the Dockerfile from the repo. Thank you for opening this issue!
In the
Dockerfile
line 8 we have:And then on line 12:
which copies the same file again. It would more efficient to simply make the
COPY . .
first and not do theCOPY rust-toolchain.toml
.