From 83b4e44b5f369311d98fa617a33d246615833a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorian=20Pu=C5=82a?= Date: Sat, 24 Feb 2024 13:55:56 -0500 Subject: [PATCH] Oops. COPY needs a directory for multiple files, so an ending slash. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44f2097..de0d199 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN cargo build \ # Bring in the source COPY ["./src/*", "./src/"] -COPY ["README.md", "LICENSE", "."] +COPY ["README.md", "LICENSE", "./"] # Build the example API. RUN cargo build --release