Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
hdacloud
images
Merge requests
!7
create simple ansible image based on alpine
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
create simple ansible image based on alpine
generic-ansible-image
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Alexander Käb
requested to merge
generic-ansible-image
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
629f48fd
1 commit,
1 year ago
1 file
+
18
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
generic-ansible/Dockerfile
0 → 100644
+
18
−
0
Options
FROM
alpine:3.18
LABEL
\
org.opencontainers.image.title="generic-ansible" \
org.opencontainers.image.url="https://code.fbi.h-da.de/hdacloud/images" \
org.opencontainers.image.source="https://code.fbi.h-da.de/hdacloud/images"
RUN
apk add
\
py3-pip
\
openssh-client
RUN
pip
install
\
python-gitlab
\
ansible
WORKDIR
/ansible
ENTRYPOINT
[""]
\ No newline at end of file
Loading