This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
docker-almalinux-base/.drone.yml
Ben Vincent e8cc0ac6db feat: create base almalinux 8.10 image
- add drone.yml
- add makefile
- add Dockerfile
- add repos
2024-08-25 17:01:50 +10:00

26 lines
490 B
YAML

kind: pipeline
type: docker
name: build-docker-image
steps:
- name: build
image: docker:20.10.24-dind
environment:
DOCKER_HOST: tcp://localhost:2375 # Docker daemon
DOCKER_TLS_CERTDIR: '' # Disable TLS to simplify DIND setup
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- apk add --no-cache make bash git
- make build
volumes:
- name: dockersock
temp: {}
trigger:
event:
- push
- pull_request