2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-02 19:17:33 +01:00
This commit is contained in:
kev
2019-10-20 11:31:17 +08:00
parent 8f7eabdc88
commit 392b574128
10 changed files with 137 additions and 66 deletions

View File

@@ -2,21 +2,22 @@
# Dockerfile for jenkins-arm
#
FROM easypi/alpine-arm:edge
FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation
ENV JENKINS_HOME /var/jenkins_home
RUN set -xe \
&& apk add --no-cache bash \
coreutils \
curl \
git \
openjdk8 \
openssh-client \
ttf-dejavu \
unzip \
zip \
&& apk add --no-cache \
bash \
coreutils \
curl \
git \
openjdk8 \
openssh-client \
ttf-dejavu \
unzip \
zip \
&& addgroup -g 1000 jenkins \
&& adduser -h $JENKINS_HOME -u 1000 -G jenkins -s /bin/bash -D jenkins \
&& mkdir -p /usr/share/jenkins \