libretranslate-api/.drone.yml

46 lines
966 B
YAML
Raw Normal View History

2024-10-04 09:56:56 +00:00
kind: pipeline
name: build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
2024-10-04 10:18:07 +00:00
clone:
disable: true
2024-10-04 09:56:56 +00:00
steps:
- name: build
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
2024-10-06 15:23:02 +00:00
volumes:
- name: dockersock
path: /var/run/docker.sock
- name: etcdocker
path: /etc/docker
2024-10-04 09:56:56 +00:00
commands:
2024-10-06 15:29:56 +00:00
- docker login -u $USER -p $PASS $REGISTRY
2024-10-06 15:29:16 +00:00
- docker run --rm --privileged $REGISTRY/qemu-user-static --reset -p yes
2024-10-06 15:23:02 +00:00
- git clone --recursive https://git.manalejandro.com/ale/libretranslate-api .
2024-10-07 11:19:53 +00:00
- cd LibreTranslate && docker buildx build --build-arg with_models=true --platform amd64 -t $REGISTRY/libretranslate-api -f ./docker/Dockerfile .
2024-10-04 09:56:56 +00:00
- docker push $REGISTRY/libretranslate-api
when:
event:
- push
- tag
2024-10-06 00:30:21 +00:00
2024-10-06 15:23:02 +00:00
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: etcdocker
host:
path: /etc/docker