-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit aa21f96
Showing
2 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Create and publish ASF MapReady Docker image | ||
|
||
on: | ||
workflow_dispatch: {} | ||
push: | ||
paths: | ||
- build/asf_mapready.Dockerfile | ||
tags: | ||
- "v*.*.*" | ||
|
||
env: | ||
REGISTRY: ghcr.io/asfadmin | ||
IMAGE_NAME: mapready | ||
TAG_NAME: ${{ github.ref_name }} | ||
|
||
jobs: | ||
|
||
build-and-push-image: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
environment: ${{ needs.setup.outputs.environment }} | ||
|
||
env: | ||
DEPLOY_PREFIX: ${{ needs.setup.outputs.deploy_prefix }} | ||
AWS_DEFAULT_REGION: us-west-2 | ||
BASE_IMAGE: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG_NAME }} | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: build/asf_mapready.Dockerfile | ||
push: true | ||
tags: ${{ env.BASE_IMAGE }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
FROM redhat/ubi8:8.10 | ||
|
||
# Redhat environment with ASF MapReady Perl | ||
|
||
# Build apps | ||
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm && \ | ||
yum update -y && \ | ||
yum install -y cmake cpan gcc perl perl-DBI sudo \ | ||
libaio git gcc-c++ sqlite-devel \ | ||
libtiff-devel libcurl-devel glib2-devel \ | ||
libjpeg-turbo-devel libpng-devel \ | ||
automake libtool diffutils \ | ||
libxml2-devel fftw-devel | ||
|
||
# Install MapReady dependencies | ||
ARG proj_ver=5.2.0 | ||
RUN echo "installing proj${proj_ver}" && \ | ||
mkdir -p /tmp/build_mp/ && cd /tmp/build_mp/ && \ | ||
curl -L https://github.com/OSGeo/PROJ/releases/download/${proj_ver}/proj-${proj_ver}.tar.gz -O && \ | ||
tar -xvf proj-${proj_ver}.tar.gz && cd proj-${proj_ver} && \ | ||
./configure && make && make install && \ | ||
ln -s /usr/local/include/*.h /usr/include/ | ||
|
||
ARG libgeotiff_ver=1.4.3 | ||
RUN echo "Building libgeotiff" && \ | ||
cd /tmp/build_mp/ && ` #yum install -y proj${proj_ver}-devel` && \ | ||
curl -L https://github.com/OSGeo/libgeotiff/releases/download/${libgeotiff_ver}/libgeotiff-${libgeotiff_ver}.tar.gz -O && \ | ||
tar -xvf libgeotiff-${libgeotiff_ver}.tar.gz && \ | ||
mkdir libgeotiff-${libgeotiff_ver}/build && cd libgeotiff-${libgeotiff_ver}/build && \ | ||
export CFLAGS="-I/usr/include -I/usr/include -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" && \ | ||
cmake .. -DCMAKE_PREFIX_PATH=/usr/local/ && cmake --build . && cmake --build . --target install | ||
|
||
ARG gsl_ver=2.1 | ||
RUN echo "Building lib-gsl" && \ | ||
mkdir -p /tmp/build_mp/gsl && cd /tmp/build_mp/gsl/ && \ | ||
curl https://mirror.us-midwest-1.nexcess.net/gnu/gsl/gsl-${gsl_ver}.tar.gz -O && \ | ||
tar -xvf gsl-${gsl_ver}.tar.gz && cd gsl-${gsl_ver} && \ | ||
./configure && make && make install | ||
|
||
ARG gdal_ver=2.1.2 | ||
RUN echo "Building gdal" && \ | ||
mkdir /tmp/build_mp/gdal && cd /tmp/build_mp/gdal && \ | ||
curl https://download.osgeo.org/gdal/${gdal_ver}/gdal-${gdal_ver}.tar.gz -O && \ | ||
tar xvf gdal-${gdal_ver}.tar.gz && \ | ||
cd gdal-${gdal_ver} && \ | ||
./configure --with-proj=/usr/local && make && make install | ||
|
||
ARG shapelib_ver=1.3.0 | ||
RUN echo "Building shapelib" && \ | ||
cd /tmp/build_mp/ && \ | ||
curl -L https://download.osgeo.org/shapelib/shapelib-${shapelib_ver}.tar.gz -O && \ | ||
tar -xvf shapelib-${shapelib_ver}.tar.gz && \ | ||
`#mkdir shapelib-${shapelib_ver}/build && cd shapelib-${shapelib_ver}/build` && \ | ||
`#cmake .. && cmake --build . && cmake --build . --target install` && \ | ||
`#cd .. && ./configure` && \ | ||
cd shapelib-${shapelib_ver} && make && make install && \ | ||
ln -s /usr/local/include/shapelib /usr/include/ && \ | ||
ln -s /usr/local/include/shapefil.h /usr/include/ && \ | ||
ln -s /usr/local/lib/libshp.a /usr/lib/ | ||
|
||
# Its not clear to me if there is better way to do this or not. NetCDF install failes without | ||
# running both `make and cmake`. | ||
ARG hdf5_ver=1.14.3 | ||
RUN echo "Building hdf5" && \ | ||
cd /tmp/build_mp/ && \ | ||
curl https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${hdf5_ver%.*}/hdf5-${hdf5_ver}/src/hdf5-${hdf5_ver}.tar.gz -O && \ | ||
tar -xvf hdf5-${hdf5_ver}.tar.gz && \ | ||
cd hdf5-${hdf5_ver} && ./configure --prefix=/usr/local/hdf5 && \ | ||
make && make install && \ | ||
ln -s /usr/local/hdf5 /usr/include/ && \ | ||
cd /tmp/build_mp/hdf5-${hdf5_ver}/config && \ | ||
cmake .. && cmake --build . && cmake --build . --target install | ||
|
||
ARG netcdf_ver=4.7.4 | ||
RUN echo "building netcdf" && \ | ||
cd /tmp/build_mp/ && \ | ||
curl -L https://github.com/Unidata/netcdf-c/archive/refs/tags/v${netcdf_ver}.tar.gz -O && \ | ||
tar -xvf v${netcdf_ver}.tar.gz && \ | ||
mkdir netcdf-c-${netcdf_ver}/build && cd netcdf-c-${netcdf_ver}/build && \ | ||
cmake .. -DCMAKE_FIND_ROOT_PATH=/usr/local/hdf5 && \ | ||
cmake --build . && cmake --build . --target install | ||
|
||
ARG cunit_ver=3.0.2 | ||
RUN echo "Installing CUnit" && \ | ||
cd /tmp/build_mp/ && \ | ||
curl -L https://gitlab.com/cunity/cunit/-/archive/${cunit_ver}/cunit-${cunit_ver}.tar.gz -O && \ | ||
tar -xvf cunit-${cunit_ver}.tar.gz && \ | ||
mkdir cunit-${cunit_ver}/build && cd cunit-${cunit_ver}/build && \ | ||
cmake .. && cmake --build . && cmake --build . --target install && \ | ||
ln -s /usr/local/include/CUnit /usr/include/ && \ | ||
ln -s /usr/local/include/CUnit/*.h /usr/include/ | ||
|
||
ARG bison_ver=3.0.5 | ||
RUN echo "Installing Bison" && \ | ||
cd /tmp/build_mp/ && \ | ||
yum install -y diffutils && \ | ||
curl -L https://ftp.gnu.org/gnu/bison/bison-${bison_ver}.tar.gz -O && \ | ||
tar -xvf bison-${bison_ver}.tar.gz && \ | ||
cd bison-${bison_ver} && ./configure && make && make install | ||
|
||
ARG flex_ver=2.6.1 | ||
RUN echo "Installing Flex" && \ | ||
cd /tmp/build_mp/ && \ | ||
curl -L https://github.com/westes/flex/releases/download/v${flex_ver}/flex-${flex_ver}.tar.gz -O && \ | ||
tar -xvf flex-${flex_ver}.tar.gz && cd flex-${flex_ver} && \ | ||
./configure && make && make install | ||
|
||
# Install MapReady -- CFLAGS += -I/usr/proj72/include | ||
RUN cd /tmp/build_mp && \ | ||
git clone https://github.com/asfadmin/ASF_MapReady.git && \ | ||
cd ASF_MapReady && \ | ||
ln -s /usr/local/include/xtiffio.h /usr/include/ && \ | ||
ln -s /usr/proj*/include/*.h /usr/include/ && \ | ||
ln -s /usr/local/hdf5/lib/libhdf5.* /usr/local/lib/ && \ | ||
ln -s /usr/local/lib64/libnetcdf* /usr/local/lib/ && \ | ||
export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig && \ | ||
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/ && \ | ||
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/HDF_Group/HDF5/${hdf5_ver}/lib/pkgconfig/ && \ | ||
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/ && \ | ||
export CFLAGS="-I/usr/include -I/usr/local/include/CUnit/ -I/usr/local/include/CUnit/ -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" && \ | ||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/ && \ | ||
./configure && make && make install && \ | ||
rm -rf /tmp/build_mp | ||
|
||
ENTRYPOINT /bin/bash |