From 35d897d3a3379d923cdda1279391d3f571021c48 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sat, 11 Apr 2020 14:32:46 +0000 Subject: [PATCH] Add 'build-icecast' --- build-icecast | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 build-icecast diff --git a/build-icecast b/build-icecast new file mode 100644 index 0000000..2a0058a --- /dev/null +++ b/build-icecast @@ -0,0 +1,61 @@ + + +def dockerFile = """ +FROM alpine:latest + +MAINTAINER TheSpider + +RUN \\ + apk add --no-cache icecast && \\ + mkdir /icecast + +USER icecast + +WORKDIR /icecast +""" + +podTemplate( + containers: [ + containerTemplate( + name: "docker", + image: "docker:19.03", + command: "sleep", + args: "99d", + envVars: [ + envVar( + key: "DOCKER_HOST", + value: "tcp://localhost:2375" + ) + ] + ), + containerTemplate( + name: "docker-daemon", + image: "docker:19.03-dind", + command: "dockerd-entrypoint.sh", + args: "--insecure-registry registry.test-chamber-13.lan:5000", + privileged: true, + envVars: [ + envVar( + key: "DOCKER_TLS_CERTDIR", + value: "" + ) + ], + ) + ] +) { + node(POD_LABEL) { + container("docker") { + stage("Write Dockerfile"){ + writeFile(file: "Dockerfile", text: dockerFile) + } + stage("Build Container"){ + dockerImage = docker.build("thespider/icecast") + } + stage('Push image') { + docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') { + dockerImage.push("latest") + } + } + } + } +} \ No newline at end of file