diff options
| author | Jonas Kohl | 2024-09-15 19:55:12 +0200 | 
|---|---|---|
| committer | Jonas Kohl | 2024-09-15 19:55:12 +0200 | 
| commit | cb9b87997993702131ca24d4d0e1fd45ef64805c (patch) | |
| tree | 3ba1725028665f90b546703c461394b577b3e596 /Dockerfile | |
| parent | cc97f36b8c9a9522636d5b50fbcd2f52de06a01a (diff) | |
Begun i18n work & more
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 11 | 
1 files changed, 8 insertions, 3 deletions
| @@ -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 |