From 3243c2cee4b228e19f178c9120f63d16f3976bfb Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 25 Dec 2024 10:48:28 +0800 Subject: [PATCH] refactor: remove db module from Dockerfile and consolidate dependencies - Removed the db module from the Dockerfile, reflecting the recent refactor that consolidates database functionality into the core/mongo package. - This change simplifies the Docker image setup by eliminating unnecessary dependencies and improving overall project organization. --- backend/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 6fee1322..7f7b41ac 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -9,7 +9,6 @@ COPY ./backend ./backend/ # Copy required modules from relative paths COPY ./core ./core/ -COPY ./db ./db/ COPY ./grpc ./grpc/ COPY ./trace ./trace/ COPY ./vcs ./vcs/