Skip to content

Commit

Permalink
fix: update Dockerfile.processing to use correct setup.py path
Browse files Browse the repository at this point in the history
  • Loading branch information
martincollignon committed Dec 1, 2024
1 parent 167d5e0 commit 930987f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/Dockerfile.processing
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

0 comments on commit 930987f

Please sign in to comment.