From baa338939c00cb97a6fa318bf4218e5b2ee32bcc Mon Sep 17 00:00:00 2001 From: Ikenna Nwagbara <54039249+ItsJustIkenna@users.noreply.github.com> Date: Thu, 31 Oct 2024 17:07:47 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8704131..aad5366 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ WORKDIR /usr/src/app/DataEngine # Copy the DataEngine files COPY . . -# Copy the DatabaseEngine files -COPY ../../DatabaseEngine . +# Copy the DatabaseEngine files from the checked-out path +COPY DatabaseEngine /usr/src/app/DataEngine/DatabaseEngine # Build the project RUN cargo build --release