forked from hardware/rainloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
59 lines (51 loc) · 2.02 KB
/
Dockerfile
File metadata and controls
59 lines (51 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
FROM alpine:3.10
LABEL description "Rainloop is a simple, modern & fast web-based client" \
maintainer="Hardware <contact@meshup.net>"
ARG GPG_FINGERPRINT="3B79 7ECE 694F 3B7B 70F3 11A4 ED7C 49D9 87DA 4591"
ARG VERSION="1.16.0"
ARG FILENAME="rainloop-community-$VERSION.zip"
ENV UID=991 GID=991 UPLOAD_MAX_SIZE=25M LOG_TO_STDOUT=false MEMORY_LIMIT=128M
RUN echo "@community https://nl.alpinelinux.org/alpine/v3.10/community" >> /etc/apk/repositories \
&& apk -U upgrade \
&& apk add -t build-dependencies \
gnupg \
openssl \
wget \
&& apk add \
ca-certificates \
nginx \
s6 \
su-exec \
php7-fpm@community \
php7-curl@community \
php7-iconv@community \
php7-xml@community \
php7-dom@community \
php7-openssl@community \
php7-json@community \
php7-zlib@community \
php7-pdo_pgsql@community \
php7-pdo_mysql@community \
php7-pdo_sqlite@community \
php7-sqlite3@community \
php7-ldap@community \
php7-simplexml@community
RUN cd /tmp \
&& wget -q https://github.com/RainLoop/rainloop-webmail/releases/download/v$VERSION/$FILENAME \
&& wget -q https://github.com/RainLoop/rainloop-webmail/releases/download/v$VERSION/$FILENAME.asc \
&& wget -q https://www.rainloop.net/repository/RainLoop.asc \
&& gpg --import /tmp/RainLoop.asc
RUN FINGERPRINT="$(LANG=C gpg --verify /tmp/$FILENAME.asc /tmp/$FILENAME 2>&1 \
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
&& if [ -z "${FINGERPRINT}" ]; then echo "ERROR: Invalid GPG signature!" && exit 1; fi \
&& if [ "${FINGERPRINT}" != "${GPG_FINGERPRINT}" ]; then echo "ERROR: Wrong GPG fingerprint!" && exit 1; fi
RUN mkdir /rainloop && unzip -q /tmp/$FILENAME -d /rainloop \
&& find /rainloop -type d -exec chmod u=rwx,g=rx,o=rx {} \; \
&& find /rainloop -type f -exec chmod u=rw,g=r,o=r {} \; \
&& apk del build-dependencies \
&& rm -rf /tmp/* /var/cache/apk/* /root/.gnupg
COPY rootfs /
RUN chmod +x /usr/local/bin/run.sh /services/*/run /services/.s6-svscan/*
VOLUME /rainloop/data
EXPOSE 8888
CMD ["run.sh"]