rfc/ci/Dockerfile
Jakub 58c2ac192e
ci: add Jenkinsfile for site CI builds (#558)
Depends on: https://github.com/status-im/infra-misc/commit/4a953922
Resolves: https://github.com/vacp2p/rfc/issues/557

Signed-off-by: Jakub Sokołowski <jakub@status.im>

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-12-02 12:51:27 +08:00

17 lines
397 B
Docker

FROM alpine:3.17
LABEL maintainer="jakub@status.im"
LABEL source="https://github.com/vacp2p/rfc"
LABEL description="rfc.vac.dev build image"
RUN apk add --no-cache \
openssh-client-common \
openssh-client-default \
git hugo py3-pip
RUN pip install ghp-import
# Jenkins user needs a specific UID/GID to work.
RUN addgroup -g 1001 jenkins \
&& adduser -D -u 1001 -G jenkins jenkins