remove composer install options
Some checks failed
build / build (push) Failing after 23s

This commit is contained in:
Constantin Simonis 2024-12-04 16:51:27 +01:00
parent 1e33939e12
commit 9be0e7dfdf
Signed by: csimonis
GPG Key ID: 3878FF77C24AF4D2

View File

@ -4,10 +4,7 @@ COPY . /var/www/project/
COPY ./.docker/hosts/file-explorer.conf /etc/apache2/sites-enabled/file-explorer.conf
RUN apt-get update \
&& apt-get install -qq -y --no-install-recommends \
cron \
nano \
locales coreutils apt-utils git libicu-dev g++ libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev;
&& apt-get install -qq -y --no-install-recommends cron nano locales coreutils;
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
@ -18,6 +15,6 @@ RUN docker-php-ext-configure intl
RUN docker-php-ext-install pdo pdo_mysql mysqli gd opcache intl zip calendar dom mbstring zip gd xsl && a2enmod rewrite
RUN pecl install apcu && docker-php-ext-enable apcu
RUN composer install --no-dev --no-install-recommends --no-interaction --no-progress --no-suggest --optimize-autoloader
RUN composer install --no-dev --optimize-autoloader --no-suggest --no-progress
WORKDIR /var/www
WORKDIR /var/www/project