summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 03f50b5..d422818 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,13 +10,18 @@ RUN apt update && apt install -y \
libjpeg62-turbo-dev \
libxmp-dev \
libfreetype6-dev \
- libpq-dev
+ libpq-dev \
+ libicu-dev \
+ ;
RUN docker-php-ext-configure gd \
--with-webp \
--with-jpeg \
--with-freetype
-RUN docker-php-ext-install gd zip pgsql
-#RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
+RUN docker-php-ext-install gd zip pgsql intl
+RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
FROM base
COPY ./000-default.conf /etc/apache2/sites-available/000-default.conf
+#COPY ./src /var/www/html
+#WORKDIR /var/www/html
+#RUN composer install