Add drone/dockerfile

This commit is contained in:
Hamcha 2019-08-22 14:19:17 +02:00
parent 48849cf0a5
commit 844de6693e
Signed by: Hamcha
GPG Key ID: 44AD3571EB09A39E
2 changed files with 41 additions and 0 deletions

33
.drone.yml Normal file
View File

@ -0,0 +1,33 @@
kind: pipeline
name: default
steps:
- name: build
image: golang
commands:
- GOPROXY=https://modules.fromouter.space go mod download
- CGO_ENABLED=0 go install .
volumes:
- name: gopath
path: /go
- name: publish
image: plugins/docker
settings:
auto_tag: true
dockerfile: Dockerfile
repo: hamcha/mlpdraftbot
target: final
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag
branch: master
volumes:
- name: gopath
temp: {}

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM golang:alpine
RUN apk add git
ENV GOPROXY https://modules.fromouter.space
RUN go get git.fromouter.space/mcg/mlpdraftbot
ENTRYPOINT [ "mlpdraftbot" ]
EXPOSE 5749