44 lines
994 B
YAML
44 lines
994 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Build Dockerfile
|
|
|
|
# 手动触发或接口触发
|
|
trigger:
|
|
event:
|
|
- custom
|
|
|
|
# 指定架构,需在 runner 配置环境变量中指定 DRONE_RUNNER_ARCH,或自动获取
|
|
# platform:
|
|
# os: linux
|
|
# arch: amd64
|
|
|
|
# 指定运行环境节点,需在 runner 配置环境变量中指定 DRONE_RUNNER_LABELS
|
|
# node:
|
|
# 标签:值
|
|
|
|
# 使用插件构建镜像
|
|
steps:
|
|
- name: Build Dockerfile
|
|
image: plugins/docker
|
|
# 仅当本地不存在该镜像时才拉取
|
|
pull: if-not-exists
|
|
settings:
|
|
registry:
|
|
from_secret: REGISTRY
|
|
username:
|
|
from_secret: DOCKER_USERNAME
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo:
|
|
from_secret: REPO
|
|
# 是否禁止推送镜像
|
|
dry_run: false
|
|
tags:
|
|
- latest
|
|
# 要使用的上下文路径,默认为 git 存储库的根目录
|
|
context: ./
|
|
# 要使用的 dockerfile 路径,默认为 git 存储库的根目录
|
|
dockerfile: ./Dockerfile
|
|
when:
|
|
branch:
|
|
- main |