Simon Cornet
c7392f6b65
Some checks reported errors
continuous-integration/drone/push Build encountered an error
29 lines
629 B
YAML
29 lines
629 B
YAML
---
|
|
kind: 'pipeline'
|
|
name: 'build'
|
|
type: 'kubernetes'
|
|
|
|
steps:
|
|
|
|
# build and publish
|
|
- name: 'publish'
|
|
image: 'docker.io/library/docker'
|
|
pull: 'always'
|
|
privileged: true
|
|
|
|
environment:
|
|
IMG: 'rakepanorama/ansible-deployment-container'
|
|
DOCKER_USER:
|
|
from_secret: 'docker_username'
|
|
DOCKER_PASS:
|
|
from_secret: 'docker_password'
|
|
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
commands:
|
|
- 'echo building image ${IMG}'
|
|
- 'docker login -u ${DOCKER_USER} -p ${DOCKER_PASS} docker.io'
|
|
- 'docker build -t ${IMG}:v0.9 -t ${IMG}:latest -f Dockerfile.linux.amd64 .'
|
|
- 'docker push -a'
|