KazV2/dockers/translucid/Dockerfile
2024-12-07 15:12:33 +01:00

17 lines
316 B
Docker

# Utilisation de l'image officielle PHP avec Apache
FROM php:8.1-apache
RUN apt-get update && apt-get install -y git
RUN docker-php-ext-install mysqli
RUN a2enmod rewrite
WORKDIR /var/www/html
RUN git clone https://github.com/simonvdfr/Translucide.git .
RUN chown -R www-data:www-data /var/www/html
EXPOSE 80