1
Fork 0
docker-build-automation/.drone.yml
Korbs d185ecda83
All checks were successful
continuous-integration/drone Build is passing
Clone repo
2024-06-07 16:22:40 -04:00

20 lines
No EOL
530 B
YAML

kind: pipeline
type: exec
name: Build and Push Docker Image
platform:
os: linux
arch: arm64
steps:
- name: Build
environment:
ARK_USERNAME:
from_secret: ARK_USERNAME
ARK_PASSWORD:
from_secret: ARK_PASSWORD
commands:
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd 4get
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
- docker build -t ark.sudovanilla.org/korbs/4get:arm64 .
- docker push ark.sudovanilla.org/korbs/4get:arm64