From f67842d2388878632e2b1d2be4e3402e3f2286bf Mon Sep 17 00:00:00 2001 From: Marcello DeSales Date: Mon, 18 Dec 2023 17:05:26 -0800 Subject: [PATCH] :whale: :recycle: Dockerfile: add / to COPY command to dir According to the spec, we need to end the command with a "/" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 36f0d42c..7b189063 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN rustup default stable RUN rustup target add x86_64-unknown-linux-musl # We want dependencies cached, so copy those first. -COPY Cargo.toml Cargo.lock /usr/src/github.com/rust-lang/mdBook +COPY Cargo.toml Cargo.lock /usr/src/github.com/rust-lang/mdBook/ # examples is referenced in Cargo.toml COPY examples /usr/src/github.com/rust-lang/mdBook/examples