docker-flarum/Dockerfile

42 lines
1.4 KiB
Docker
Raw Normal View History

2016-07-14 04:12:58 -04:00
FROM xataz/alpine:3.4
MAINTAINER xataz <https://github.com/xataz>
MAINTAINER hardware <https://github.com/hardware>
ENV GID=991 UID=991
RUN echo "@testing https://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& export BUILD_DEPS="git" \
2016-07-16 06:07:10 -04:00
&& apk --no-cache add ${BUILD_DEPS} \
nginx \
curl \
supervisor \
php7-phar@testing \
php7-fpm@testing \
php7-curl@testing \
php7-mbstring@testing \
php7-openssl@testing \
php7-json@testing \
php7-pdo_mysql@testing \
php7-gd@testing \
php7-dom@testing \
php7-ctype@testing \
php7-session@testing \
2016-07-14 04:12:58 -04:00
&& cd /tmp \
&& ln -s /usr/bin/php7 /usr/bin/php \
&& curl -s http://getcomposer.org/installer | php \
&& mv /tmp/composer.phar /usr/bin/composer \
&& chmod +x /usr/bin/composer \
&& mkdir /flarum \
&& addgroup -g ${GID} flarum && adduser -h /flarum -s /bin/sh -D -G flarum -u ${UID} flarum \
&& chown flarum:flarum /flarum \
&& su-exec flarum:flarum composer create-project flarum/flarum /flarum/app --stability=beta \
&& composer clear-cache \
&& rm -rf /flarum/.composer/cache/*
COPY nginx.conf /etc/nginx/nginx.conf
COPY php-fpm.conf /etc/php7/php-fpm.conf
COPY supervisord.conf /etc/supervisor/supervisord.conf
EXPOSE 8080
2016-07-16 06:07:10 -04:00
CMD ["/usr/bin/tini","--","supervisord","-c","/etc/supervisor/supervisord.conf"]