Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • bnarayanarao/isce2
  • sshah/isce2
2 results
Show changes
Commits on Source (2)
FROM isce/isce2:20240804
RUN apt-get update -y && \
apt-get install -y nano scons libfftw3-dev libxm4 libmotif-dev python3-dev python3-pip git && \
apt-get install -y python3-scipy python3-opencv python3-numpy python3-h5py cython3 gdal-bin gfortran libgdal-dev python3-gdal libhdf5-dev python3.9-dev
RUN pip3 install cython opencv-python opencv-contrib-python shapely requests
RUN mkdir -p /home/pkgs /home/.isce
COPY . /home/pkgs/isce2
RUN ln -s /home/pkgs/isce2 /home/pkgs/isce
RUN cp /home/pkgs/isce2/infiles_dps/ISCE_config.sh /home/pkgs/isce2/ && \
cp /home/pkgs/isce2/infiles_dps/read_calibration_slc.py /home/pkgs/isce2/contrib/stack/topsStack/ && \
cp /home/pkgs/isce2/infiles_dps/SConfigISCE /home/.isce/
RUN /home/pkgs/isce2/infiles_dps/install.sh
CMD ["/bin/bash"]
#!/bin/bash
export SCONS_CONFIG_DIR=/home/.isce
export PATH="/home/pkgs/isce/contrib/stack/topsStack:$PATH"
export ISCE_INSTALL_ROOT=/home/pkgs/isce
export PYTHONPATH=$ISCE_INSTALL_ROOT:$PYTHONPATH
export ISCE_HOME=$ISCE_INSTALL_ROOT/isce
export PATH=$ISCE_HOME/applications:$PATH
pushd /home/pkgs/isce2
scons install