Files
write.status.im/Dockerfile
T
jakub d0346a9157 ci: install ghp-import via pip instead of apk
On Alpine it's only in testing repository.
https://github.com/status-im/help.status.im/issues/195

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-07-28 14:31:03 +02:00

15 lines
451 B
Docker

FROM alpine:3.16.0
LABEL maintainer="jakub@status.im"
LABEL description="Build image for Jenkins CI."
# Jenkins user needs a specific UID/GID to work.
RUN addgroup -g 1001 jenkins \
&& adduser -D -u 1001 -G jenkins jenkins
# System dependencies for MkDocs.
RUN apk add --no-cache \
git rsync openssh-client-default python3 py3-pip \
# Deps for Pillow library used by social cards.
cairo freetype libffi-dev libjpeg libpng-dev zlib-dev