This commit is contained in:
2025-07-20 14:53:12 +03:00
commit cd2f49ea82
234 changed files with 52038 additions and 0 deletions

10
drone/drone.yaml Normal file
View File

@@ -0,0 +1,10 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: python:3.11
commands:
- pip install -r requirements.txt
- python your_script.py

View File

@@ -0,0 +1,6 @@
steps:
- name: build
image: plugins/docker
settings:
repo: youruser/your-image
docker_host: ssh://user@host

View File

@@ -0,0 +1,7 @@
steps:
- name: build
image: your_private_registry/your_image:tag
image_pull_secrets:
- dockerconfigjson
commands:
- # your build command