From 573c4f433150489c6d5896182a5991b04dee6a8e Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Mon, 1 Jan 2024 15:53:10 -0500 Subject: [PATCH] Fix Docker image incorrect site root copy path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 17a8624..c5c9389 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ library manager built for collaborative listening." # Copy the binary and the compressed assets to the "site root" COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/libretunes /libretunes -COPY --from=builder /app/target/site /target/site +COPY --from=builder /app/target/site /site # Configure Leptos settings ENV LEPTOS_SITE_ADDR=0.0.0.0:3000