48 lines
888 B
YAML
48 lines
888 B
YAML
kind: pipeline
|
|
name: build-linux-amd64
|
|
type: docker
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: clone
|
|
image: alpine/git
|
|
commands:
|
|
- git clone --recursive https://git.manalejandro.com/ale/libretranslate-api .
|
|
- 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:
|
|
- docker login -u $USER -p $PASS $REGISTRY
|
|
- docker buildx build --platform amd64 -t $REGISTRY/libretranslate-api -f docker/Dockerfile ./LibreTranslate
|
|
- docker push $REGISTRY/libretranslate-api
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
|
|
volumes:
|
|
- name: dockersock
|
|
host:
|
|
path: /var/run/docker.sock
|
|
- name: usrbin
|
|
host:
|
|
path: /usr/bin
|