mirror of
https://github.com/waku-org/examples.waku.org.git
synced 2025-02-22 18:58:11 +00:00
14 lines
281 B
Docker
14 lines
281 B
Docker
FROM node:16-alpine3.16
|
|
|
|
LABEL maintainer="jakub@status.im"
|
|
|
|
RUN apk --no-cache add openssh git
|
|
|
|
RUN npm install -g pnpm
|
|
|
|
# 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"
|