dockerize project #2
29
Dockerfile
29
Dockerfile
@ -2,19 +2,20 @@ FROM php:8.2-apache
|
|||||||
|
|
||||||
COPY . /var/www/project/
|
COPY . /var/www/project/
|
||||||
COPY ./.docker/hosts/file-explorer.conf /etc/apache2/sites-enabled/file-explorer.conf
|
COPY ./.docker/hosts/file-explorer.conf /etc/apache2/sites-enabled/file-explorer.conf
|
||||||
|
RUN ls;
|
||||||
RUN apt-get update \
|
#
|
||||||
&& apt-get install -qq -y --no-install-recommends cron nano locales coreutils libicu-dev libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev;
|
#RUN apt-get update \
|
||||||
|
# && apt-get install -qq -y --no-install-recommends cron nano locales coreutils libicu-dev libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev;
|
||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
#
|
||||||
|
#RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
||||||
RUN curl -sSk https://getcomposer.org/installer | php -- --disable-tls && \
|
#
|
||||||
mv composer.phar /usr/local/bin/composer
|
#RUN curl -sSk https://getcomposer.org/installer | php -- --disable-tls && \
|
||||||
|
# mv composer.phar /usr/local/bin/composer
|
||||||
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 #docker-php-ext-configure intl
|
||||||
RUN pecl install apcu && docker-php-ext-enable apcu
|
#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 --optimize-autoloader --no-suggest --no-progress
|
#
|
||||||
|
#RUN composer install --no-dev --optimize-autoloader --no-suggest --no-progress
|
||||||
|
|
||||||
WORKDIR /var/www/project
|
WORKDIR /var/www/project
|
||||||
|
Loading…
x
Reference in New Issue
Block a user