foundation/alpine/Dockerfile

10 lines
342 B
Docker
Raw Normal View History

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
2022-12-01 21:06:44 +00:00
RUN addgroup --system --gid 116 jenkins
2022-12-01 21:01:29 +00:00
2022-12-01 21:10:48 +00:00
RUN adduser -system --uid 111 --ingroup jenkins --home /var/lib/jenkins --no-create-home --disabled-password jenkins