use kaniko to build container images
	
		
			
	
		
	
	
		
	
		
			Some checks reported errors
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build encountered an error
				
			
		
		
	
	
				
					
				
			
		
			Some checks reported errors
		
		
	
	continuous-integration/drone/push Build encountered an error
				
			This commit is contained in:
		
							
								
								
									
										66
									
								
								.drone.yml
									
									
									
									
									
								
							
							
						
						
									
										66
									
								
								.drone.yml
									
									
									
									
									
								
							@@ -13,22 +13,18 @@ steps:
 | 
			
		||||
  - 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
 | 
			
		||||
 | 
			
		||||
- name: build
 | 
			
		||||
  image: docker:stable-dind
 | 
			
		||||
  volumes:
 | 
			
		||||
  - name: dockersock
 | 
			
		||||
    path: /var/run
 | 
			
		||||
  environment:
 | 
			
		||||
      DOCKER_USERNAME:
 | 
			
		||||
        from_secret: DOCKER_USERNAME
 | 
			
		||||
      DOCKER_PASSWORD:
 | 
			
		||||
        from_secret: DOCKER_PASSWORD
 | 
			
		||||
  commands:
 | 
			
		||||
  - echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
 | 
			
		||||
  - docker build -t="$DOCKER_USERNAME/consumer_api" .
 | 
			
		||||
  - docker build -t="$DOCKER_USERNAME/consumer_api:$DRONE_BUILD_NUMBER" .
 | 
			
		||||
  - docker push "$DOCKER_USERNAME/consumer_api"
 | 
			
		||||
  - docker push "$DOCKER_USERNAME/consumer_api:$DRONE_BUILD_NUMBER"
 | 
			
		||||
- name: kaniko
 | 
			
		||||
  image: banzaicloud/drone-kaniko
 | 
			
		||||
  settings:
 | 
			
		||||
    registry: registry.kmlabz.com
 | 
			
		||||
    repo: goldenpogacsa/${DRONE_REPO_NAME}
 | 
			
		||||
    username:
 | 
			
		||||
      from_secret: DOCKER_USERNAME
 | 
			
		||||
    password:
 | 
			
		||||
      from_secret: DOCKER_PASSWORD
 | 
			
		||||
    tags:
 | 
			
		||||
      - latest
 | 
			
		||||
      - ${DRONE_BUILD_NUMBER}
 | 
			
		||||
 | 
			
		||||
- name: make_docs
 | 
			
		||||
  image: python:3.8
 | 
			
		||||
@@ -38,23 +34,19 @@ steps:
 | 
			
		||||
  - cd docs
 | 
			
		||||
  - make html
 | 
			
		||||
 | 
			
		||||
- name: build_docs
 | 
			
		||||
  image: docker:stable-dind
 | 
			
		||||
  volumes:
 | 
			
		||||
    - name: dockersock
 | 
			
		||||
      path: /var/run
 | 
			
		||||
  environment:
 | 
			
		||||
    DOCKER_USERNAME:
 | 
			
		||||
- name: kaniko
 | 
			
		||||
  image: banzaicloud/drone-kaniko
 | 
			
		||||
  settings:
 | 
			
		||||
    dockerfile: docs/Dockerfile
 | 
			
		||||
    registry: registry.kmlabz.com
 | 
			
		||||
    repo: goldenpogacsa/consumer-api-docs
 | 
			
		||||
    username:
 | 
			
		||||
      from_secret: DOCKER_USERNAME
 | 
			
		||||
    DOCKER_PASSWORD:
 | 
			
		||||
    password:
 | 
			
		||||
      from_secret: DOCKER_PASSWORD
 | 
			
		||||
  commands:
 | 
			
		||||
    - cd docs
 | 
			
		||||
    - echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
 | 
			
		||||
    - docker build -t="$DOCKER_USERNAME/consumer-api-docs" .
 | 
			
		||||
    - docker build -t="$DOCKER_USERNAME/consumer-api-docs:$DRONE_BUILD_NUMBER" .
 | 
			
		||||
    - docker push "$DOCKER_USERNAME/consumer-api-docs"
 | 
			
		||||
    - docker push "$DOCKER_USERNAME/consumer-api-docs:$DRONE_BUILD_NUMBER"
 | 
			
		||||
    tags:
 | 
			
		||||
      - latest
 | 
			
		||||
      - ${DRONE_BUILD_NUMBER}
 | 
			
		||||
 | 
			
		||||
- name: slack
 | 
			
		||||
  image: plugins/slack
 | 
			
		||||
@@ -65,15 +57,3 @@ steps:
 | 
			
		||||
    icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
 | 
			
		||||
  when:
 | 
			
		||||
    status: [ failure ]
 | 
			
		||||
 | 
			
		||||
services:
 | 
			
		||||
- name: docker
 | 
			
		||||
  image: docker:stable-dind
 | 
			
		||||
  privileged: true
 | 
			
		||||
  volumes:
 | 
			
		||||
  - name: dockersock
 | 
			
		||||
    path: /var/run
 | 
			
		||||
 | 
			
		||||
volumes:
 | 
			
		||||
- name: dockersock
 | 
			
		||||
  temp: {}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user