Files

15 lines
451 B
Docker
Raw Permalink Normal View History

2022-03-23 15:46:36 +01:00
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