14 lines
249 B
YAML
14 lines
249 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: Build Gitea docker image
|
||
|
image: docker:stable
|
||
|
volumes:
|
||
|
- name: docker_sock
|
||
|
path: /var/run/docker.sock
|
||
|
commands:
|
||
|
- docker build --no-cache -t autonomic/gitea:drone .
|