Initial commit
This commit is contained in:
commit
c88bca3ab6
|
@ -0,0 +1,16 @@
|
|||
pipeline:
|
||||
build_and_release:
|
||||
image: banzaicloud/drone-kaniko
|
||||
settings:
|
||||
registry: gitea.mdg-hamburg.de
|
||||
repo: ci-tools/deb-buildpackage
|
||||
tags: latest
|
||||
dockerfile: Containerfile
|
||||
username:
|
||||
from_secret: container_registry_username
|
||||
password:
|
||||
from_secret: container_registry_password
|
||||
when:
|
||||
event: [push]
|
||||
|
||||
branches: master
|
|
@ -0,0 +1,5 @@
|
|||
FROM docker.io/debian:stable-slim
|
||||
|
||||
RUN apt update && \
|
||||
apt install -y dpkg-dev make devscripts
|
||||
|
Loading…
Reference in New Issue