10 lines
342 B
Docker
10 lines
342 B
Docker
FROM golang:1.18-alpine
|
|
|
|
RUN apk update ; apk add --no-cache --allow-untrusted ca-certificates curl bash git jq gcc musl-dev linux-headers make
|
|
|
|
RUN apk add --no-cache --upgrade grep
|
|
|
|
RUN addgroup --system --gid 116 jenkins
|
|
|
|
RUN adduser -system --uid 111 --ingroup jenkins --home /var/lib/jenkins --no-create-home --disabled-password jenkins
|