]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - Dockerfile.armhf
c7eefc13f84178a03ab3e40a734d52800783933e
[github/shaarli/Shaarli.git] / Dockerfile.armhf
1 # Stage 1:
2 # - Copy Shaarli sources
3 # - Build documentation
4 FROM arm32v6/alpine:3.8 as docs
5 ADD . /usr/src/app/shaarli
6 RUN apk --update --no-cache add py2-pip \
7 && cd /usr/src/app/shaarli \
8 && pip install --no-cache-dir mkdocs \
9 && mkdocs build --clean
10
11 # Stage 2:
12 # - Resolve PHP dependencies with Composer
13 FROM arm32v6/alpine:3.8 as composer
14 COPY --from=docs /usr/src/app/shaarli /app/shaarli
15 RUN apk --update --no-cache add php7-curl php7-mbstring composer \
16 && cd /app/shaarli \
17 && composer --prefer-dist --no-dev install
18
19 # Stage 3:
20 # - Frontend dependencies
21 FROM arm32v6/alpine:3.8 as node
22 COPY --from=composer /app/shaarli /shaarli
23 RUN apk --update --no-cache add yarn nodejs-current python2 build-base \
24 && cd /shaarli \
25 && yarn install \
26 && yarn run build \
27 && rm -rf node_modules
28
29 # Stage 4:
30 # - Shaarli image
31 FROM arm32v6/alpine:3.8
32 LABEL maintainer="Shaarli Community"
33
34 RUN apk --update --no-cache add \
35 ca-certificates \
36 nginx \
37 php7 \
38 php7-ctype \
39 php7-fpm \
40 php7-gd \
41 php7-iconv \
42 php7-intl \
43 php7-json \
44 php7-mbstring \
45 php7-openssl \
46 php7-session \
47 php7-xml \
48 php7-zlib \
49 s6
50
51 COPY .docker/nginx.conf /etc/nginx/nginx.conf
52 COPY .docker/php-fpm.conf /etc/php7/php-fpm.conf
53 COPY .docker/services.d /etc/services.d
54
55 RUN rm -rf /etc/php7/php-fpm.d/www.conf \
56 && sed -i 's/post_max_size.*/post_max_size = 10M/' /etc/php7/php.ini \
57 && sed -i 's/upload_max_filesize.*/upload_max_filesize = 10M/' /etc/php7/php.ini
58
59
60 WORKDIR /var/www
61 COPY --from=node /shaarli /var/www/shaarli
62
63 RUN chown -R nginx:nginx . \
64 && ln -sf /dev/stdout /var/log/nginx/shaarli.access.log \
65 && ln -sf /dev/stderr /var/log/nginx/shaarli.error.log
66
67 VOLUME /var/www/shaarli/cache
68 VOLUME /var/www/shaarli/data
69
70 EXPOSE 80
71
72 ENTRYPOINT ["/bin/s6-svscan", "/etc/services.d"]
73 CMD []