All checks were successful
andreas-personal/jenkins-ssh-docker-agent/pipeline/head This commit looks good
17 lines
310 B
Docker
17 lines
310 B
Docker
FROM jenkins/ssh-agent:alpine-jdk21
|
|
|
|
RUN addgroup --gid 281 docker
|
|
RUN addgroup jenkins docker
|
|
|
|
RUN apk add --no-cache docker docker-compose
|
|
|
|
# Install tea
|
|
RUN apk add --no-cache tea
|
|
|
|
#Install OpenSSL
|
|
RUN apk add --no-cache openssl
|
|
|
|
#Install git lfs
|
|
RUN apk add --no-cache git-lfs
|
|
RUN git lfs install --system
|