From 92810ab3eb9cc04b69365b4340fa0f8b9f5ab32e Mon Sep 17 00:00:00 2001 From: Mitchell Marino Date: Sun, 5 Mar 2023 20:21:04 -0600 Subject: [PATCH] update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 60147e4..51396aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ COPY . . RUN cargo install --path . FROM debian:buster-slim -RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* -COPY --from=builder /user/local/cargo/bin/school_app_api /usr/local/bin/school_app_api +COPY --from=build /usr/local/cargo/bin/school_app_api /usr/local/bin/school_app_api CMD ["school_app_api"]