Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LSO
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
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
LSO
Merge requests
!23
install ansible as part of Docker image build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
install ansible as part of Docker image build
feature/install-galaxy-dependencies
into
develop
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Karel van Klink
requested to merge
feature/install-galaxy-dependencies
into
develop
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
develop
version 1
6beeebb8
2 years ago
develop (base)
and
latest version
latest version
fb3acb57
2 commits,
2 years ago
version 1
6beeebb8
1 commit,
2 years ago
1 file
+
5
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docker/Dockerfile
+
5
−
3
Options
@@ -3,17 +3,19 @@ FROM python:alpine3.17
LABEL
version="1.0"
LABEL
maintainer="Geant LSO Team <@geant.org>"
RUN
apk add
--no-cache
bash curl vim
RUN
apk add
--no-cache
bash curl vim
gcc libc-dev libffi-dev
# RUN pip install --pre --extra-index-url https://artifactory.software.geant.org/artifactory/api/pypi/geant-swd-pypi/simple goat-lso
WORKDIR
/opt/lso
COPY
. .
RUN
pip
install
-e
.
RUN
pip
install
httpx sphinx sphinx_rtd_theme vale
RUN
pip
install
httpx sphinx sphinx_rtd_theme vale
ansible
# Generate documentation
RUN
./build-docs.sh
# Generate sample configuration file
# Generate sample configuration file, and remove an existing one if present
RUN
rm
config.json
>
/dev/null 2>&1
RUN
ln
-s
config.json.example config.json
# ENTRYPOINT ["sleep", "inf"]
Loading