You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
501 B
14 lines
501 B
FROM php:8.2-apache as base
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
COPY . /var/www/html/
|
|
|
|
WORKDIR /var/www/html/
|
|
# Définir DocumentRoot sur le sous-répertoire public
|
|
RUN sed -ri -e 's!/var/www/html!/var/www/html/public!g' /etc/apache2/sites-available/*.conf
|
|
RUN sed -ri -e 's!/var/www/!/var/www/public/!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
RUN sed -ri -e 's!/var/www/html!/var/www/html/public!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
|
EXPOSE 80
|