Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isce2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sujen Shah
isce2
Compare revisions
main to d85518d3a3f3a6a9e87d9011de387d041e94fa2b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
sshah/isce2
Select target project
No results found
d85518d3a3f3a6a9e87d9011de387d041e94fa2b
Select Git revision
Swap
Target
bnarayanarao/isce2
Select target project
bnarayanarao/isce2
sshah/isce2
2 results
main
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add install.sh
· 0d8bed8f
Sujen Shah
authored
11 months ago
0d8bed8f
Add dockerfile for custom isce install
· d85518d3
Sujen Shah
authored
11 months ago
d85518d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
infiles_dps/dockerfile
+19
-0
19 additions, 0 deletions
infiles_dps/dockerfile
infiles_dps/install.sh
+11
-0
11 additions, 0 deletions
infiles_dps/install.sh
with
30 additions
and
0 deletions
infiles_dps/dockerfile
0 → 100644
View file @
d85518d3
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"]
This diff is collapsed.
Click to expand it.
infiles_dps/install.sh
0 → 100644
View file @
d85518d3
#!/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
This diff is collapsed.
Click to expand it.