This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
build-containers/build-icecast.jenkins

46 lines
1.4 KiB
Groovy

#!groovy
def repository = "registry.c.test-chamber-13.lan"
def repositoryCreds = "harbor-repository-creds"
def dockerFile = """FROM ${repository}/dockerhub/library/alpine:latest
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
LABEL org.opencontainers.image.title="icecast"
LABEL org.opencontainers.image.description="Docker Container providing services for IceCast"
LABEL org.opencontainers.image.base.name="docker.io/library/alpine/latest"
ENV CONFIG_FILE="/etc/icecast.xml"
RUN apk add --no-cache icecast && \\
addgroup -S -g 1000 icecast && \\
adduser --disabled-password -G icecast --gecos "application account" --home "/icecast" --shell "/sbin/nologin" --uid 1000 icecast && \\
mkdir /icecast && \\
chown icecast:icecast /icecast
USER icecast
CMD ["/bin/sh", "-c", "icecast -c \\"\${CONFIG_FILE}\\""]
"""
def label = "kubernetes-${UUID.randomUUID().toString()}"
def templateName = "pipeline-worker"
podTemplate(
label: label,
name: templateName,
yaml: functions.podYaml(
repo: repository,
templateName: templateName,
kaniko: true
)
) {
node (label) {
def workspace = pwd()
functions.buildContainer(
repository: "registry.hub.docker.com",
imageDest: "registry.hub.docker.com/thespider/icecast:latest",
dockerFile: dockerFile,
repoCreds: "dockerhub-repository-creds",
)
}
}