waku-lab/ci/Dockerfile

12 lines
256 B
Docker
Raw Normal View History

2024-07-23 12:24:02 +00:00
FROM node:18-alpine3.20
2024-01-08 23:01:53 +00:00
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"