docker-flarum/Dockerfile

50 lines
1.5 KiB
Docker
Raw Normal View History

FROM alpine:3.7
2017-03-12 13:49:45 -04:00
LABEL description "Next-generation forum software that makes online discussion fun" \
maintainer="Hardware <hardware@mondedie.fr>, Magicalex <magicalex@mondedie.fr>"
2016-07-14 04:12:58 -04:00
2017-07-22 03:45:12 -04:00
ARG VERSION=v0.1.0-beta.7
2016-07-17 05:35:13 -04:00
ENV GID=991 UID=991 UPLOAD_MAX_SIZE=50M
2016-07-14 04:12:58 -04:00
RUN echo "@community https://nl.alpinelinux.org/alpine/v3.7/community" >> /etc/apk/repositories \
&& apk add -U \
nginx \
s6 \
su-exec \
curl \
php7@community \
php7-fileinfo@community \
php7-phar@community \
php7-fpm@community \
php7-curl@community \
php7-mbstring@community \
php7-openssl@community \
php7-json@community \
php7-pdo@community \
php7-pdo_mysql@community \
php7-mysqlnd@community \
php7-zlib@community \
php7-gd@community \
php7-dom@community \
php7-ctype@community \
php7-session@community \
php7-opcache@community \
php7-xmlwriter@community \
php7-tokenizer@community \
2016-09-25 05:22:48 -04:00
&& cd /tmp \
&& curl -s http://getcomposer.org/installer | php \
&& mv /tmp/composer.phar /usr/bin/composer \
&& chmod +x /usr/bin/composer \
&& mkdir -p /flarum/app \
&& chown -R $UID:$GID /flarum \
2016-10-23 17:01:02 -04:00
&& COMPOSER_CACHE_DIR="/tmp" su-exec $UID:$GID composer create-project flarum/flarum /flarum/app $VERSION --stability=beta \
2016-09-25 05:22:48 -04:00
&& composer clear-cache \
&& rm -rf /flarum/.composer /var/cache/apk/*
2016-07-14 04:12:58 -04:00
COPY rootfs /
RUN chmod +x /usr/local/bin/* /services/*/run /services/.s6-svscan/*
VOLUME /flarum/app/assets /flarum/app/extensions
2016-09-25 05:22:48 -04:00
EXPOSE 8888
CMD ["run.sh"]