🐳 ♻️ Dockerfile: add / to COPY command to dir

According to the spec, we need to end the command with a "/"
This commit is contained in:
Marcello DeSales 2023-12-18 17:05:26 -08:00 committed by GitHub
parent 35fd99b05a
commit f67842d238
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ RUN rustup default stable
RUN rustup target add x86_64-unknown-linux-musl RUN rustup target add x86_64-unknown-linux-musl
# We want dependencies cached, so copy those first. # 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 # examples is referenced in Cargo.toml
COPY examples /usr/src/github.com/rust-lang/mdBook/examples COPY examples /usr/src/github.com/rust-lang/mdBook/examples