Skip to content

Commit

Permalink
fix: match Beam versions between environments
Browse files Browse the repository at this point in the history
- Set Beam version to 2.60.0 to match submission environment
- Remove ENTRYPOINT to allow Dataflow control
- Fix container compatibility issues
  • Loading branch information
martincollignon committed Dec 1, 2024
1 parent d219869 commit 2b0e36b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile.processing
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# backend/Dockerfile.validation
FROM apache/beam_python3.11_sdk:2.61.0
FROM apache/beam_python3.11_sdk:2.60.0

# Install system dependencies including GDAL
RUN apt-get update && apt-get install -y \
Expand All @@ -14,7 +14,7 @@ ENV CPLUS_INCLUDE_PATH=/usr/include/gdal
ENV C_INCLUDE_PATH=/usr/include/gdal

# Install Apache Beam with GCP support first (as recommended in the docs)
RUN pip install 'apache-beam[gcp]>=2.61.0'
RUN pip install 'apache-beam[gcp]==2.60.0'

# Copy and install additional requirements
COPY requirements.txt /app/requirements.txt
Expand Down

0 comments on commit 2b0e36b

Please sign in to comment.