Files
CDN-APP-INSIDER/.drone.yml
Dinawo 672f125f98
Some checks failed
continuous-integration/drone/push Build is failing
Update .drone.yml to use build-docker-image step instead of build-and-push-docker-image
2024-04-17 17:02:35 +02:00

25 lines
514 B
YAML

kind: pipeline
name: default
steps:
- name: build-node
image: node:latest
environment:
USERNAME:
from_secret: git_username
PASSWORD:
from_secret: git_password
commands:
- npm install
- node -v
- name: build-docker-image
image: plugins/docker
settings:
repo: swiftlogiclabs/cdn-app-insider
tags: latest
dockerfile: Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password