Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
let-it-snow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Remote Modules
let-it-snow
Commits
d6b628f3
Commit
d6b628f3
authored
2 years ago
by
Pierre Tysebaert-Plagne
Browse files
Options
Downloads
Patches
Plain Diff
Ajout de l'installation de saga-gis dans le dockerfile
parent
9ddb618d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!108
Ajout de l'installation de saga-gis dans le dockerfile
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+20
-0
20 additions, 0 deletions
Dockerfile
with
20 additions
and
0 deletions
Dockerfile
+
20
−
0
View file @
d6b628f3
...
...
@@ -52,6 +52,7 @@ RUN --mount=type=secret,id=proxy_http_cnes --mount=type=secret,id=proxy_https_cn
libmuparserx-dev \
libfftw3-dev \
libgsl-dev \
libgtk-3-dev \
&& \
rm -rf /var/lib/apt/lists/*
...
...
@@ -85,6 +86,25 @@ RUN --mount=type=secret,id=proxy_http_cnes --mount=type=secret,id=proxy_https_cn
ninja
install
&&
\
rm
-rf
/root/otb-build /tmp/OTB.zip
# Build wxWidgets
RUN mkdir -p /root/wxwidgets-build/ && \
cd /root/wxwidgets-build && \
git clone --branch v3.2.2 https://github.com/wxWidgets/wxWidgets.git && \
cd wxWidgets && \
git submodule update --init 3rdparty/pcre && \
git submodule update --init 3rdparty/catch && \
git submodule update --init 3rdparty/nanosvg && \
./configure --with-gtk && \
make install -j4
# Build saga-gis
RUN mkdir -p /root/saga-gis-build/ && \
cd /root/saga-gis-build && \
git clone --branch saga-8.4.2 https://github.com/saga-gis/saga-gis.git && \
mkdir saga-gis/build && cd saga-gis/build && \
cmake ../saga-gis && \
make install -j4
# Build LIS
ADD
. /LIS_src/
RUN
ln
-s
/usr/bin/python3 /usr/bin/python
&&
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment