python-api-server/.drone.yml

52 lines
1.2 KiB
YAML
Raw Normal View History

2023-04-12 15:56:47 +02:00
---
kind: pipeline
type: docker
name: default
steps:
# prüfe ob secrets im Repo sind
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
# linter für Dockerfiles
# https://github.com/hadolint/hadolint/blob/master/docs/INTEGRATION.md
- name: hadolint
image: hadolint/hadolint:latest-debian
commands:
- hadolint --version
- hadolint Dockerfile
2023-04-20 13:43:26 +02:00
- name: docker_build_and_push_selfhosted
2023-04-12 15:56:47 +02:00
image: plugins/docker
settings:
username:
2023-04-20 13:43:26 +02:00
from_secret: OCI-REGISTRY-USER
2023-04-12 15:56:47 +02:00
password:
2023-04-20 13:43:26 +02:00
from_secret: OCI-REGISTRY-PASS
2023-04-12 15:56:47 +02:00
dockerfile: Dockerfile
2023-04-20 13:43:26 +02:00
repo: registry.mgrote.net/apt-cacher-ng
registry: registry.mgrote.net
2023-04-12 15:56:47 +02:00
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
2023-04-20 13:40:21 +02:00
- latest
2023-04-20 13:39:53 +02:00
2023-04-20 13:43:26 +02:00
- name: docker_build_and_push_dockerhub
2023-04-20 13:39:53 +02:00
image: plugins/docker
settings:
username:
2023-04-20 13:43:26 +02:00
from_secret: DOCKERHUB_USER
2023-04-20 13:39:53 +02:00
password:
2023-04-20 13:43:26 +02:00
from_secret: DOCKERHUB_PASS
2023-04-20 13:39:53 +02:00
dockerfile: Dockerfile
2023-04-20 13:43:26 +02:00
repo: quotengrote/python-api-server
2023-04-20 13:39:53 +02:00
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
- latest
2023-04-20 13:43:26 +02:00
when:
event:
exclude:
- pull_request