mirror of
https://github.com/status-im/write.status.im.git
synced 2026-08-30 17:21:11 +00:00
parent 81c519fca5
author Jorge Campo <62282406+jorge-campo@users.noreply.github.com> 1648109624 +0100
committer Jakub Sokołowski <jakub@status.im> 1666614792 +0200
gpgsig -----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEonsKFtg7UMxpDZ6lCapUA+VNmTEFAmNWhggACgkQCapUA+VN
mTGuUw/+MwImDYh7BEBS0Ct0IcAdpc+g7JBgBGWRQ/xKyHAsZr2F3qnSXgfQC74+
Zqf4bqFR4wPwNaU3K3srSsLRiAciyRwIvggebf0W4J09EOi1uxCABRq/Essx/PHN
+0U/yKRmVR8M7RVjD/KgLzckhlvTQWGGMKc+9Ki7X+PCs2NJrtwwRWaFnsnQ0Rcv
NT861fACin70pX1CzCZDku89hsStjUx87f82DKTRqotIN+9Zx0/1CYZi+7xZQPBZ
yubJ7HqfgQLdQ1gVlT1WvfIMUzErxyzTlZJq5Nkr9SHNiaLBmX6GAyLAoF4hrVza
mie9K6tARpb+yuwpQM1gZfy2WEdAZaFM+uT4naZIqy1li+QASF3r3JVsc0TPKSLj
X8DEHb3EQ2qxb5DIChu+l9YX2DeTlVLOBWebaksrx61vjoytgF1xBVHEoZLUo116
mMuCQj8lhHIAOY8NwyBvpcjy8gXuZeQVOcrxv/RmxtKiE4ElX0zwRHkiCNE1sic+
h+YDRPwGsc0gqKQ/ccBVpRKDRyPkGpr5tjN9s0DxoO3Md02uojqJWxVdQskk4a3F
KUvZvc5iFcvMghYt7wZnIeLbXTkHKzZjfTD1MqTGrus08GfvtxNL077V42xNGahr
LisRZX3M57z2ZezvctPgMMKVZZWOgewvHoRG6DIQoeWyS8FDQy4=
=r81M
-----END PGP SIGNATURE-----
Signed-off-by: Jakub Sokołowski <jakub@status.im>
remove Status app directories and update repo and MkDocs config files
Signed-off-by: Jakub Sokołowski <jakub@status.im>
15 lines
451 B
Docker
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
|