Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ansible
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
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tools
Docker
Ansible
Commits
f2905283
Commit
f2905283
authored
4 years ago
by
Dmitriy Safronov
Browse files
Options
Downloads
Patches
Plain Diff
new
parent
b9d11cdf
No related branches found
No related tags found
4 merge requests
!25
Fix
,
!24
Fix
,
!23
Fix
,
!16
New
Pipeline
#2227
failed
4 years ago
Stage: lint
Stage: pack
Stage: test
Stage: scan
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+31
-4
31 additions, 4 deletions
Dockerfile
with
31 additions
and
4 deletions
Dockerfile
+
31
−
4
View file @
f2905283
FROM
pipelinecomponents/ansible-lint:latest
FROM
registry.cyberbrain.pw/docker/alpine:latest
RUN
apk
--no-cache
add
\
sudo
\
python3
\
py3-pip
\
openssl
\
ca-certificates
\
sshpass
\
openssh-client
\
rsync
\
git
&&
\
apk
--no-cache
add
--virtual
build-dependencies
\
python3-dev
\
libffi-dev
\
openssl-dev
\
build-base
&&
\
pip3
install
--upgrade
\
pip
\
cffi
\
wheel
&&
\
pip3
install
\
cryptography
\
ansible
\
mitogen ansible-lint jmespath
\
pywinrm
&&
\
apk del build-dependencies
&&
\
rm
-rf
/var/cache/apk/
*
RUN
mkdir
-p
/opt/ansible
&&
\
mkdir
-p
/etc/ansible
&&
\
echo
'localhost'
>
/etc/ansible/hosts
WORKDIR
/opt/ansible
RUN
apk add
--no-cache
git git-lfs openssh-client rsync
CMD
[ "ansible", "--version" ]
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