From 6f88d87e7446a76f77dcecb57d781a4aaffaf4e7 Mon Sep 17 00:00:00 2001 From: Per Stark Date: Tue, 18 Nov 2025 22:51:48 +0100 Subject: [PATCH] fix: add dockerfile changes related to retrieval-pipeline --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae9d11f..117cb4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Cache deps COPY Cargo.toml Cargo.lock ./ -RUN mkdir -p api-router common composite-retrieval html-router ingestion-pipeline json-stream-parser main worker +RUN mkdir -p api-router common retrieval-pipeline html-router ingestion-pipeline json-stream-parser main worker COPY api-router/Cargo.toml ./api-router/ COPY common/Cargo.toml ./common/ -COPY composite-retrieval/Cargo.toml ./composite-retrieval/ +COPY retrieval-pipeline/Cargo.toml ./retrieval-pipeline/ COPY html-router/Cargo.toml ./html-router/ COPY ingestion-pipeline/Cargo.toml ./ingestion-pipeline/ COPY json-stream-parser/Cargo.toml ./json-stream-parser/