2016-04-11 15:59:32 +02:00
|
|
|
FROM alpine:3.3
|
|
|
|
MAINTAINER Wonderfall <wonderfall@mondedie.fr>
|
|
|
|
|
|
|
|
ENV GID=1000 UID=1000
|
|
|
|
|
|
|
|
RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
|
2016-05-07 00:46:59 +02:00
|
|
|
&& echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
2016-04-11 15:59:32 +02:00
|
|
|
&& apk -U add \
|
|
|
|
nginx \
|
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-04-11 15:59:32 +02:00
|
|
|
supervisor \
|
|
|
|
gnupg \
|
|
|
|
tini@commuedge \
|
|
|
|
&& wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip -P /tmp \
|
|
|
|
&& wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip.asc -P /tmp \
|
|
|
|
&& wget -q http://repository.rainloop.net/RainLoop.asc -P /tmp \
|
|
|
|
&& gpg --import /tmp/RainLoop.asc \
|
|
|
|
&& gpg --verify /tmp/rainloop-community-latest.zip.asc \
|
|
|
|
&& 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 \
|
|
|
|
&& rm -rf /tmp/* /var/cache/apk/*
|
|
|
|
|
|
|
|
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
|
|
|
|
LABEL description "Fast, simple and modern webmail client"
|
|
|
|
CMD ["tini","--","run.sh"]
|