File tree Expand file tree Collapse file tree
geospatial-classification
land-cover-classification Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515# NVIDIA CUDA container: https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda
1616# Supported NVIDIA images: https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md
1717# TensorFlow/CUDA compatibility: https://www.tensorflow.org/install/source#gpu
18- FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8 -runtime-ubuntu22.04
18+ FROM nvcr.io/nvidia/cuda:12.5.1-cudnn -runtime-ubuntu22.04
1919
2020WORKDIR /pipeline
2121
@@ -25,15 +25,14 @@ COPY *.py ./
2525RUN apt-get update \
2626 # Install Python and other system dependencies.
2727 && apt-get install -y --no-install-recommends \
28- curl g++ python3.14-dev python3.14-venv python3-distutils \
2928 && rm -rf /var/lib/apt/lists/* \
30- && update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
29+ && update-alternatives --install /usr/bin/python python /usr/bin/python3.13 10 \
3130 && curl https://bootstrap.pypa.io/get-pip.py | python \
3231 # Install the pipeline requirements.
3332 && pip install --no-cache-dir -r requirements.txt \
3433 && pip check
3534
3635# Set the entrypoint to Apache Beam SDK worker launcher.
3736# Check this matches the apache-beam version in the requirements.txt
38- COPY --from=apache/beam_python3.14_sdk :2.73 .0 /opt/apache/beam /opt/apache/beam
37+ COPY --from=apache/beam_python3.13_sdk :2.74 .0 /opt/apache/beam /opt/apache/beam
3938ENTRYPOINT [ "/opt/apache/beam/boot" ]
Original file line number Diff line number Diff line change 11google-api-python-client==2.87.0
22google-cloud-storage==2.9.0
3- pytest==9.0.3; python_version >= "3.10"
3+ pytest==9.0.3
Original file line number Diff line number Diff line change 11pillow == 12.2.0 ; python_version >= "3.10"
2- apache-beam [gcp ]== 2.58.1
2+ apache-beam [gcp ]== 2.74.0
33rasterio == 1.3.10
4- tensorflow == 2.12 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
4+ tensorflow == 2.21 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
Original file line number Diff line number Diff line change 1515# NVIDIA CUDA container: https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda
1616# Supported NVIDIA images: https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md
1717# TensorFlow/CUDA compatibility: https://www.tensorflow.org/install/source#gpu
18- FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8 -runtime-ubuntu22.04
18+ FROM nvcr.io/nvidia/cuda:12.5.1-cudnn -runtime-ubuntu22.04
1919
2020WORKDIR /pipeline
2121
@@ -25,15 +25,14 @@ COPY *.py ./
2525RUN apt-get update \
2626 # Install Python and other system dependencies.
2727 && apt-get install -y --no-install-recommends \
28- curl g++ python3.14-dev python3.14-venv python3-distutils \
2928 && rm -rf /var/lib/apt/lists/* \
30- && update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
29+ && update-alternatives --install /usr/bin/python python /usr/bin/python3.13 10 \
3130 && curl https://bootstrap.pypa.io/get-pip.py | python \
3231 # Install the pipeline requirements.
3332 && pip install --no-cache-dir -r requirements.txt \
3433 && pip check
3534
3635# Set the entrypoint to Apache Beam SDK worker launcher.
3736# Check this matches the apache-beam version in the requirements.txt
38- COPY --from=apache/beam_python3.14_sdk :2.73 .0 /opt/apache/beam /opt/apache/beam
37+ COPY --from=apache/beam_python3.13_sdk :2.74 .0 /opt/apache/beam /opt/apache/beam
3938ENTRYPOINT [ "/opt/apache/beam/boot" ]
Original file line number Diff line number Diff line change 11google-api-python-client==2.87.0
22google-cloud-storage==2.9.0
3- pytest==9.0.3; python_version >= "3.10"
3+ pytest==9.0.3
Original file line number Diff line number Diff line change 11pillow == 12.2.0 ; python_version >= "3.10"
2- apache-beam [gcp ]== 2.58.1
2+ apache-beam [gcp ]== 2.74.0
33rasterio == 1.3.10
4- tensorflow == 2.12 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
4+ tensorflow == 2.21 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
Original file line number Diff line number Diff line change 1515# NVIDIA CUDA container: https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda
1616# Supported NVIDIA images: https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md
1717# TensorFlow/CUDA compatibility: https://www.tensorflow.org/install/source#gpu
18- FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8 -runtime-ubuntu22.04
18+ FROM nvcr.io/nvidia/cuda:12.5.1-cudnn -runtime-ubuntu22.04
1919
2020WORKDIR /pipeline
2121
@@ -25,15 +25,14 @@ COPY *.py ./
2525RUN apt-get update \
2626 # Install Python and other system dependencies.
2727 && apt-get install -y --no-install-recommends \
28- curl g++ python3.14-dev python3.14-venv python3-distutils \
2928 && rm -rf /var/lib/apt/lists/* \
30- && update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
29+ && update-alternatives --install /usr/bin/python python /usr/bin/python3.13 10 \
3130 && curl https://bootstrap.pypa.io/get-pip.py | python \
3231 # Install the pipeline requirements.
3332 && pip install --no-cache-dir -r requirements.txt \
3433 && pip check
3534
3635# Set the entrypoint to Apache Beam SDK worker launcher.
3736# Check this matches the apache-beam version in the requirements.txt
38- COPY --from=apache/beam_python3.14_sdk :2.73 .0 /opt/apache/beam /opt/apache/beam
37+ COPY --from=apache/beam_python3.13_sdk :2.74 .0 /opt/apache/beam /opt/apache/beam
3938ENTRYPOINT [ "/opt/apache/beam/boot" ]
Original file line number Diff line number Diff line change 11google-api-python-client==2.131.0
22google-cloud-storage==2.9.0
3- pytest==9.0.3; python_version >= "3.10"
3+ pytest==9.0.3
Original file line number Diff line number Diff line change 1- apache-beam [gcp ]== 2.46 .0
2- tensorflow == 2.12 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
1+ apache-beam [gcp ]== 2.74 .0
2+ tensorflow == 2.21 .0 # Check TensorFlow/CUDA compatibility with Dockerfile: https://www.tensorflow.org/install/source#gpu
Original file line number Diff line number Diff line change 1- pytest==9.0.3; python_version >= "3.10"
1+ pytest==9.0.3
22pytest-xdist==3.3.0
You can’t perform that action at this time.
0 commit comments