netcat/.drone.yml

28 lines
883 B
YAML
Raw Normal View History

2023-07-09 20:54:31 +02:00
kind: pipeline
type: kubernetes
name: default-build
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: Build Container
image: debian:stable
privileged: true
volumes:
- name: fedhq-ca-crt
2023-07-10 09:41:19 +02:00
path: /etc/ssl/certs2/
2023-07-09 20:54:31 +02:00
commands:
- mkdir -p /etc/ssl/certs
2023-07-10 09:38:56 +02:00
- ln -s /etc/ssl/certs2/federationHQ-CA.pem /etc/ssl/certs/
2023-07-09 20:54:31 +02:00
- sed -i 's/65534/1000/' /etc/passwd
- echo "192.168.230.200 registry.cloud.federationhq.de" >> /etc/hosts
- apt-get update
- apt-get -qy install ca-certificates buildah crun
- buildah pull registry.cloud.federationhq.de/netcat:latest || true
- buildah bud -t registry.cloud.federationhq.de/netcat:latest -f Dockerfile
- buildah push registry.cloud.federationhq.de/netcat:latest