Adding first version.
This commit is contained in:
commit
0705e8a6d4
2 changed files with 21 additions and 0 deletions
10
.drone.yml
Normal file
10
.drone.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
steps:
|
||||||
|
- name: docker
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: vypni/lechecker
|
||||||
|
auto_tag: true
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# le'checker
|
||||||
|
#
|
||||||
|
# VERSION 0.1
|
||||||
|
|
||||||
|
FROM alpine:edge
|
||||||
|
|
||||||
|
RUN apk add ansible-lint && \
|
||||||
|
pip3 install --upgrade pip && \
|
||||||
|
pip3 install yamllint && \
|
||||||
|
ansible-lint --version && \
|
||||||
|
yamllint -v
|
Loading…
Reference in a new issue