5 Commits

Author SHA1 Message Date
71ab7fbae0 feature: added docker buildx
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
2024-06-16 22:21:40 +03:00
0d1e8df801 feature: changed openssh dependency to openssh-client
All checks were successful
Gitea/docker-base-images/jdk14-alpine/pipeline/head This commit looks good
2023-04-04 20:29:43 +03:00
83e4df3b6d feature: added openssh installation
All checks were successful
Gitea/docker-base-images/jdk14-alpine/pipeline/head This commit looks good
2023-04-04 20:28:29 +03:00
d1489e801f chore: changed agent base image to own alpine-base
All checks were successful
Gitea/docker-base-images/jdk14-alpine/pipeline/head This commit looks good
2023-04-04 20:22:01 +03:00
6a665ddc9c feature: added openssh installation
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
2023-04-04 19:24:56 +03:00
2 changed files with 3 additions and 2 deletions

View File

@@ -44,4 +44,6 @@ RUN set -o errexit -o nounset && echo "Installing build dependencies" && \
echo "Editing startGroovy to include java.xml.bind module" && \
sed --in-place 's|startGroovy ( ) {|startGroovy ( ) {\n JAVA_OPTS="$JAVA_OPTS --add-modules=ALL-SYSTEM"|' "${GROOVY_HOME}/bin/startGroovy"
RUN apk add --no-cache openssh-client
COPY --from=docker/buildx-bin /buildx /usr/libexec/docker/cli-plugins/docker-buildx

3
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ def resolveImageName(env) {
pipeline {
agent {
docker {
image 'alpine:3.17.3'
image 'git.tswf.io/docker-base-images/alpine-base:1.0.0-3.17.3'
// Mount docker socket for docker-in-docker
args '-v /var/run/docker.sock:/var/run/docker.sock'
}
@@ -17,7 +17,6 @@ pipeline {
stages {
stage('prepare') {
steps {
sh "apk update && apk add --no-cache git docker-cli"
script {
env.IMAGE_BASE_NAME = "jdk14-alpine"
env.RELEASE_TAG_PREFIX = "release-"