new file: Dockerfile

new file:   Jenkinsfile

Initial commit
This commit is contained in:
Jonathan Ervine 2020-03-16 20:10:26 +08:00
parent bf5e7df20e
commit 50aca7187f
2 changed files with 48 additions and 0 deletions

23
Dockerfile Normal file
View File

@ -0,0 +1,23 @@
# Base on latest (edge) alpine image
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.11
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
# Install updates
ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \
TERM='xterm' \
VERSION='develop' \
SONARR_USER='mediaservice' \
SONARR_GROUP='mediaservice' \
SONARR_UID='1003' \
SONARR_GID='1003'
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk -U update && \
apk -U upgrade && \
apk -U add nfs-utils
rm -rf /tmp/src && \
rm -rf /var/cache/apk/*
CMD [ "/bin/sh" ]

25
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,25 @@
node("docker-node") {
docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') {
git branch: "3.11.3", url: "ssh://git@git.ervine.org:2222/jonny/x86_64-alpine-sonarr-sidecar", credentialsId: 'jenkins-to-git'
sh "git rev-parse HEAD > .git/commit-id"
def commit_id = readFile('.git/commit-id').trim()
println commit_id
try {
stage "build"
def app = docker.build "library/x86_64/alpine/sonarr-sidecar"
stage "publish"
app.push("${env.BUILD_NUMBER}")
app.push("3.11.3")
app.push("latest")
}
}
catch (err) {
currentBuild.result = 'FAILURE'
}
}
}