Commit 1ff264ef authored by Josh Grant (jn3)'s avatar Josh Grant (jn3)
Browse files

update gdal.Dockerfile to include python bindings

parent 4a783b08
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -3,15 +3,19 @@ FROM savannah.ornl.gov/common/pygarden:${PYGARDEN_TAG}
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        gcc \
        g++ \
        gdal-bin \
        libgdal-dev \
        libproj-dev \
        python3-gdal \
        python3-numpy \
        libtiff-dev \
        libgeos-dev \
        libspatialite-dev \
        libsqlite3-dev \
        libcurl4-gnutls-dev && \
    pip install --no-cache-dir --break-system-packages \
        numpy \
        GDAL==$(gdal-config --version) && \
    apt-get remove -y gcc g++ && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*