33 lines
1005 B
Docker
33 lines
1005 B
Docker
FROM php:8.3-apache
|
|
|
|
ENV APACHE_DOCUMENT_ROOT=/var/www/html/public
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
unzip \
|
|
libzip-dev \
|
|
libpng-dev \
|
|
libjpeg62-turbo-dev \
|
|
libfreetype6-dev \
|
|
libicu-dev \
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install pdo_mysql gd intl zip \
|
|
&& pecl install redis \
|
|
&& docker-php-ext-enable redis \
|
|
&& a2enmod rewrite headers \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
|
COPY docker/php-apache/vhost.conf /etc/apache2/sites-available/000-default.conf
|
|
COPY docker/php-apache/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
# Buang CR (kalau fail di-checkout dengan line ending Windows) dan jadikan executable
|
|
RUN sed -i 's/\r$//' /usr/local/bin/entrypoint.sh \
|
|
&& chmod +x /usr/local/bin/entrypoint.sh \
|
|
&& chown -R www-data:www-data /var/www/html
|
|
|
|
ENTRYPOINT ["entrypoint.sh"]
|
|
CMD ["apache2-foreground"]
|