From 427cf39661580465ad1320f9a98cf2e4258d3804 Mon Sep 17 00:00:00 2001 From: marcantoinem <marc-antoine.m@outlook.com> Date: Sun, 25 Aug 2024 16:38:13 -0400 Subject: [PATCH] Improve dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9cfefc5..f45b08e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ WORKDIR /app/aep-schedule-website # Build the app RUN cargo leptos build --release -vv -FROM alpine as runner +FROM alpine AS runner # Copy the server binary to the /app directory COPY --from=builder /app/aep-schedule-website/target/release/aep-schedule-website /app/ # /target/site contains our JS/WASM/CSS, etc. -- GitLab