mirror of
https://github.com/waku-org/waku-lab.git
synced 2025-01-09 15:35:54 +00:00
12 lines
256 B
Docker
12 lines
256 B
Docker
FROM node:18-alpine3.20
|
|
|
|
LABEL maintainer="jakub@status.im"
|
|
|
|
RUN apk --no-cache add openssh git
|
|
|
|
# Jenkins user needs a specific UID/GID to work
|
|
RUN addgroup -g 1001 jenkins \
|
|
&& adduser -u 1001 -G jenkins -D jenkins
|
|
USER jenkins
|
|
ENV HOME="/home/jenkins"
|