From ab6e9fa673b9c24d87a27eb3d249b6b53835abe3 Mon Sep 17 00:00:00 2001 From: Ikenna Nwagbara <54039249+ItsJustIkenna@users.noreply.github.com> Date: Thu, 31 Oct 2024 00:35:17 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1664d3f..76cdd98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /usr/src/app/DataEngine # Copy the DataEngine files COPY . . +# Copy the DatabaseEngine files +COPY ../DatabaseEngine /usr/src/app/DatabaseEngine + # Build the project RUN cargo build --release