use kaniko to build container image
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-04-28 19:20:37 +02:00
parent 667e5c0985
commit d26a81acf0
1 changed files with 13 additions and 29 deletions

View File

@ -4,7 +4,7 @@ name: default
steps: steps:
- name: static_analysis - name: static_analysis
image: python:3 image: "python:3"
commands: commands:
- pip3 install pylint bandit mccabe - pip3 install pylint bandit mccabe
- pip3 install -r requirements.txt - pip3 install -r requirements.txt
@ -13,22 +13,18 @@ steps:
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi - find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi - bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
- name: build - name: kaniko
image: docker:stable-dind image: banzaicloud/drone-kaniko
volumes: settings:
- name: dockersock registry: registry.kmlabz.com
path: /var/run repo: birbnetes/${DRONE_REPO_NAME}
environment: username:
DOCKER_USERNAME: from_secret: DOCKER_USERNAME
from_secret: DOCKER_USERNAME password:
DOCKER_PASSWORD: from_secret: DOCKER_PASSWORD
from_secret: DOCKER_PASSWORD tags:
commands: - latest
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com - ${DRONE_BUILD_NUMBER}
- docker build -t="registry.kmlabz.com/birbnetes/$DRONE_REPO_NAME" .
- docker build -t="registry.kmlabz.com/birbnetes/$DRONE_REPO_NAME:$DRONE_BUILD_NUMBER" .
- docker push "registry.kmlabz.com/birbnetes/$DRONE_REPO_NAME"
- docker push "registry.kmlabz.com/birbnetes/$DRONE_REPO_NAME:$DRONE_BUILD_NUMBER"
- name: ms-teams - name: ms-teams
image: kuperiu/drone-teams image: kuperiu/drone-teams
@ -37,15 +33,3 @@ steps:
from_secret: TEAMS_WEBHOOK from_secret: TEAMS_WEBHOOK
when: when:
status: [ failure ] status: [ failure ]
services:
- name: docker
image: docker:stable-dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}