1
0
mirror of https://bitbucket.org/shim_/mumble.git synced 2019-09-08 21:58:51 +02:00

refractored build process

This commit is contained in:
shim_
2018-11-11 15:36:52 +01:00
parent 8eb3d218c1
commit 1b9e855834
2 changed files with 13 additions and 4 deletions

8
.drone.yml Normal file
View File

@@ -0,0 +1,8 @@
pipeline:
docker:
image: plugins/docker
cache_from: ["shimun/mumble"]
use_cache: true
repo: shimun/mumble
secrets: ["docker_username", "docker_password"]

View File

@@ -1,8 +1,9 @@
FROM alpine:latest FROM phlak/mumble
RUN apk update && \ USER root
apk add --no-cache murmur qt-mysql netcat-openbsd wget bash
RUN wget --no-check-certificate -O /usr/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64 RUN apk add --no-cache qt-mysql netcat-openbsd wget bash
ADD https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64 /usr/bin/dumb-init
COPY murmur.conf /etc/murmur.conf COPY murmur.conf /etc/murmur.conf
COPY init.sh /usr/bin/init.sh COPY init.sh /usr/bin/init.sh