drone-test-1/.drone.yml
Chris Hammer ac1e8c5a83
All checks were successful
continuous-integration/drone Build is passing
remove hostnamectl
2023-01-19 21:41:53 -05:00

21 lines
392 B
YAML

kind: pipeline
name: hello-world
type: docker
steps:
- name: say-hello
image: busybox
commands:
- echo hello-world
- name: fix-centos-8-docker
image: centos:8
commands:
- hostname
- lscpu
- dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos -y
- dnf distro-sync -y
- dnf update -y
- hostname