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