dockerfiles/rainloop/Dockerfile

53 lines
2.0 KiB
Docker
Raw Normal View History

2016-06-03 18:59:45 +02:00
FROM alpine:edge
2016-05-08 21:58:35 +02:00
MAINTAINER Wonderfall <wonderfall@schrodinger.io>
2016-04-11 15:59:32 +02:00
2016-05-08 21:58:35 +02:00
ARG GPG_rainloop="3B79 7ECE 694F 3B7B 70F3 11A4 ED7C 49D9 87DA 4591"
ENV GID=991 UID=991
2016-04-11 15:59:32 +02:00
RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
&& echo "@testing https://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
2016-04-11 15:59:32 +02:00
&& apk -U add \
2016-05-08 22:00:44 +02:00
gnupg \
2016-04-11 15:59:32 +02:00
nginx \
2016-05-08 22:00:44 +02:00
supervisor \
tini@commuedge \
2016-05-07 00:46:59 +02:00
php7-fpm@testing \
php7-curl@testing \
php7-iconv@testing \
php7-xml@testing \
php7-dom@testing \
php7-openssl@testing \
php7-json@testing \
php7-zlib@testing \
php7-pdo_mysql@testing \
php7-pdo_sqlite@testing \
php7-sqlite3@testing \
2016-05-08 21:58:35 +02:00
&& cd /tmp \
&& wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip \
&& wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip.asc \
&& wget -q http://repository.rainloop.net/RainLoop.asc \
&& echo "Verifying authenticity of rainloop-community-latest.zip using GPG..." \
2016-05-08 22:00:44 +02:00
&& gpg --import RainLoop.asc \
2016-05-08 21:58:35 +02:00
&& FINGERPRINT="$(LANG=C gpg --verify rainloop-community-latest.zip.asc rainloop-community-latest.zip 2>&1 \
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
&& if [ "${FINGERPRINT}" != "${GPG_rainloop}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
&& echo "All seems good, now unzipping rainloop-community-latest.zip..." \
2016-04-11 15:59:32 +02:00
&& mkdir /rainloop && unzip -q /tmp/rainloop-community-latest.zip -d /rainloop \
2016-05-07 00:40:08 +02:00
&& find /rainloop -type d -exec chmod 755 {} \; \
&& find /rainloop -type f -exec chmod 644 {} \; \
2016-04-11 15:59:32 +02:00
&& apk del gnupg \
2016-05-30 19:43:23 +02:00
&& rm -rf /tmp/* /var/cache/apk/* /root/.gnupg
2016-04-11 15:59:32 +02:00
COPY nginx.conf /etc/nginx/nginx.conf
2016-05-07 00:46:59 +02:00
COPY php-fpm.conf /etc/php7/php-fpm.conf
2016-04-11 15:59:32 +02:00
COPY supervisord.conf /usr/local/etc/supervisord.conf
COPY run.sh /usr/local/bin/run.sh
RUN chmod +x /usr/local/bin/run.sh
VOLUME /rainloop/data
EXPOSE 80
2016-05-09 18:46:01 +02:00
CMD ["/sbin/tini","--","run.sh"]