libretranslate-api/.drone.yml

45 lines
880 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
volumes:
- name: dockersock
path: /var/run/docker.sock
- name: usrbin
path: /usr/bin
commands:
2024-10-04 11:07:14 +00:00
- apk update && apk add git && /usr/bin/git clone --recursive https://git.manalejandro.com/ale/libretranslate-api .
2024-10-04 09:56:56 +00:00
- docker login -u $USER -p $PASS $REGISTRY
2024-10-04 10:07:40 +00:00
- docker buildx build --platform amd64 -t $REGISTRY/libretranslate-api -f docker/Dockerfile ./LibreTranslate
2024-10-04 09:56:56 +00:00
- docker push $REGISTRY/libretranslate-api
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: usrbin
host:
path: /usr/bin