From 930987f39ca145004b772be963dddf8e1088f5f4 Mon Sep 17 00:00:00 2001 From: Martin Collignon <2604526+martincollignon@users.noreply.github.com> Date: Sun, 1 Dec 2024 16:01:29 +0100 Subject: [PATCH] fix: update Dockerfile.processing to use correct setup.py path --- backend/Dockerfile.processing | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile.processing b/backend/Dockerfile.processing index 8bdd9326..b6f37137 100644 --- a/backend/Dockerfile.processing +++ b/backend/Dockerfile.processing @@ -17,10 +17,9 @@ ENV C_INCLUDE_PATH=/usr/include/gdal COPY requirements.txt /app/requirements.txt RUN pip install -r /app/requirements.txt -# Copy the entire package structure +# Copy the dataflow directory (which includes setup.py) COPY dataflow /app/dataflow -COPY setup.py /app/setup.py # Install the package in development mode -WORKDIR /app +WORKDIR /app/dataflow RUN pip install -e .