Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pyotb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orfeo ToolBox
pyotb
Merge requests
!99
Draft: Testing autoinstall
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Testing autoinstall
testing_autoinstall
into
develop
Overview
0
Commits
11
Pipelines
11
Changes
2
Closed
Cresson Remi
requested to merge
testing_autoinstall
into
develop
1 year ago
Overview
0
Commits
11
Pipelines
11
Changes
2
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
a0d62a11
11 commits,
1 year ago
2 files
+
30
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tests/autoinstall_dockerfile
0 → 100644
+
10
−
0
Options
ARG IMG
FROM $IMG
# For unbuntu:
RUN apt update && apt install -y ca-certificates python3 && update-ca-certificates
RUN useradd -s /bin/bash -m otbuser
WORKDIR /home/otbuser
USER otbuser
COPY . /home/otbuser/pyotb
RUN PYTHONPATH=/home/otbuser/pyotb/pyotb python3 -c "import install; assert install.install_otb()"
RUN PYTHONPATH=/home/otbuser/pyotb python3 -c "import pyotb"
Loading