foundation/alpine/Dockerfile

10 lines
279 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:01:29 +00:00
RUN groupadd -r -g 116 jenkins
RUN useradd -r -u 111 -g 116 -d /var/lib/jenkins -M -N jenkins