first
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2020-08-07 15:06:32 -05:00
commit 587831a855
Signed by: jeff
GPG Key ID: 6F86035A6D97044E
2 changed files with 31 additions and 0 deletions

26
.drone.yml Normal file
View File

@ -0,0 +1,26 @@
---
kind: secret
name: docker_username
get:
path: docker
name: username
---
kind: secret
name: docker_password
get:
path: docker
name: password
---
kind: pipeline
type: kubernetes
name: publish
steps:
- name: publish
image: plugins/docker
settings:
repo: jcollie/msi-packager
username:
from_secret: docker_username
password:
from_secret: docker_password
auto_tag: true

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM registry.fedoraproject.org/fedora:32
RUN dnf -y update && dnf -y install msitools npm && dnf clean all
RUN npm install -g msi-packager