libretranslate-api/.drone.yml
ale e9ede8e74d
Some checks reported errors
continuous-integration/drone/push Build was killed
.drone.yml
2024-10-06 17:24:34 +02:00

45 lines
862 B
YAML

kind: pipeline
name: build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
clone:
disable: true
steps:
- name: build
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- name: dockersock
path: /var/run/docker.sock
- name: etcdocker
path: /etc/docker
commands:
- git clone --recursive https://git.manalejandro.com/ale/libretranslate-api .
- docker login -u $USER -p $PASS $REGISTRY
- cd LibreTranslate && docker buildx build --platform amd64 -t $REGISTRY/libretranslate-api -f ./docker/Dockerfile .
- docker push $REGISTRY/libretranslate-api
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: etcdocker
host:
path: /etc/docker