From 8ed3ed3a77a46997e5afa8915bb9ee77c8caf249 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sun, 12 Aug 2018 16:23:35 +0200 Subject: Moved docker files to contrib, added documentation --- contrib/Dockerfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 contrib/Dockerfile (limited to 'contrib/Dockerfile') diff --git a/contrib/Dockerfile b/contrib/Dockerfile new file mode 100644 index 00000000..a45633f5 --- /dev/null +++ b/contrib/Dockerfile @@ -0,0 +1,31 @@ +FROM composer AS composer +COPY composer.json /app/ +RUN composer install + + +FROM node:8-alpine as themes +WORKDIR /app +RUN npm install -g less +COPY --from=composer /app/vendor /app/vendor +COPY public/ /app/public +COPY themes/ /app/themes +RUN sh /app/themes/build-themes.sh + +FROM php:7-fpm-alpine +RUN apk add --no-cache icu-dev +RUN docker-php-ext-install intl +RUN apk add --no-cache gettext-dev +RUN docker-php-ext-install gettext +RUN docker-php-ext-install pdo_mysql + +COPY --from=composer /app/vendor /var/www/vendor +COPY --from=themes /app/public/ /var/www/html +COPY src/ /var/www/src/ +COPY includes/ /var/www/includes/ +COPY config/ /var/www/config/ +COPY locale/ /var/www/locale +COPY templates/ /var/www/templates + +# Symlink gets copied so we delete the symlink. +RUN rm /var/www/html/vendor/bootstrap +COPY vendor/twbs/bootstrap/dist/ /var/www/html/vendor/bootstrap/ -- cgit v1.2.3-70-g09d2